diff --git a/NAMESPACE b/NAMESPACE
index 3fd96ea7..ed8cf05a 100644
--- a/NAMESPACE
+++ b/NAMESPACE
@@ -2,16 +2,12 @@
 
 S3method(ff_draft,default)
 S3method(ff_draft,mfl_conn)
-S3method(ff_franchises,default)
-S3method(ff_franchises,mfl_conn)
 S3method(ff_league,default)
 S3method(ff_league,mfl_conn)
 S3method(ff_playerscores,default)
 S3method(ff_playerscores,mfl_conn)
 S3method(ff_rosters,default)
 S3method(ff_rosters,mfl_conn)
-S3method(ff_scoring,default)
-S3method(ff_scoring,mfl_conn)
 S3method(ff_transactions,default)
 S3method(ff_transactions,mfl_conn)
 S3method(print,mfl_api)
@@ -23,10 +19,14 @@ export(dp_values)
 export(ff_connect)
 export(ff_draft)
 export(ff_franchises)
+export(ff_franchises.default)
+export(ff_franchises.mfl_conn)
 export(ff_league)
 export(ff_playerscores)
 export(ff_rosters)
 export(ff_scoring)
+export(ff_scoring.default)
+export(ff_scoring.mfl_conn)
 export(ff_transactions)
 export(mfl_connect)
 export(mfl_getendpoint)
diff --git a/R/generics.R b/R/generics.R
index 31d0a8c5..af0d9ae0 100644
--- a/R/generics.R
+++ b/R/generics.R
@@ -82,6 +82,7 @@ ff_scoring <- function(conn){
 }
 
 #' @export
+#' @rdname ff_scoring
 ff_scoring.default <- function(conn){
   stop(glue::glue("No method of ff_scoring found for platform: {conn$platform}."))
 }
@@ -103,6 +104,7 @@ ff_rosters <- function(conn){
 }
 
 #' @export
+#'
 ff_rosters.default <- function(conn){
   stop(glue::glue("No method of ff_rosters found for platform: {conn$platform}."))
 }
@@ -123,6 +125,7 @@ ff_franchises <- function(conn){
   UseMethod("ff_franchises")
 }
 
+#' @rdname ff_franchises
 #' @export
 ff_franchises.default <- function(conn){
   stop(glue::glue("No method of ff_franchises found for platform: {conn$platform}."))
diff --git a/R/mfl_draft.R b/R/mfl_draft.R
index 188b5f83..e6c62684 100644
--- a/R/mfl_draft.R
+++ b/R/mfl_draft.R
@@ -31,7 +31,7 @@ ff_draft.mfl_conn <- function(conn,...){
           dplyr::select('franchise_id','franchise_name'),
         by = c('franchise_id')) %>%
       dplyr::left_join(
-        mfl_players() %>%
+        mfl_players(conn) %>%
           dplyr::select('player_id','player_name','pos','age','team'),
         by = c('player_id')) %>%
       dplyr::transmute(
@@ -58,7 +58,7 @@ ff_draft.mfl_conn <- function(conn,...){
             dplyr::select('franchise_id','division','division_name','franchise_name'),
           by = c("franchise_id")) %>%
         dplyr::left_join(
-          mfl_players() %>%
+          mfl_players(conn) %>%
             dplyr::select('player_id','player_name','pos','age','team'),
           by = c('player_id')) %>%
         dplyr::transmute(
diff --git a/R/mfl_rosters.R b/R/mfl_rosters.R
index 1ebc0c8f..a6327f42 100644
--- a/R/mfl_rosters.R
+++ b/R/mfl_rosters.R
@@ -28,7 +28,7 @@ ff_rosters.mfl_conn <- function(conn){
                   "roster_status" = .data$status) %>%
     dplyr::select("franchise_id","player_id",dplyr::everything())
 
-  players_endpoint <- mfl_players() %>%
+  players_endpoint <- mfl_players(conn) %>%
     dplyr::select("player_id","player_name","pos","team","age","draft_year","draft_round")
 
   franchises_endpoint <- ff_franchises(conn) %>%
@@ -48,6 +48,8 @@ ff_rosters.mfl_conn <- function(conn){
 #' A cached table of MFL players. Will store in memory for each session!
 #' (via memoise in zzz.R)
 #'
+#' @param conn optionally, pass in a conn object generated by ff_connect to receive league-specific players
+#'
 #' @examples
 #' player_list <- mfl_players()
 #' dplyr::sample_n(player_list,5)
@@ -55,8 +57,13 @@ ff_rosters.mfl_conn <- function(conn){
 #' @return a dataframe containing all ~2000+ players in the MFL database
 #' @export
 
-mfl_players <- function() {
-  mfl_connect(.fn_choose_season()) %>%
+mfl_players <- function(conn = NULL) {
+
+  if(!is.null(conn) && class(conn)!="mfl_conn"){stop("conn must be generated by 'mfl_connect()' and have type 'mfl_conn'")}
+
+  if(is.null(conn)){conn <- mfl_connect(.fn_choose_season())}
+
+  conn %>%
     mfl_getendpoint("players",DETAILS = 1) %>%
     purrr::pluck("content", "players", "player") %>%
     tibble::tibble() %>%
diff --git a/R/mfl_transactions.R b/R/mfl_transactions.R
index 4c001a18..43826476 100644
--- a/R/mfl_transactions.R
+++ b/R/mfl_transactions.R
@@ -24,6 +24,8 @@ ff_transactions.mfl_conn <- function(conn,...){
     tidyr::unnest_wider(1) %>%
     dplyr::mutate_at('timestamp',~as.numeric(.x) %>% lubridate::as_datetime())
 
+  if(nrow(df_transactions)==0){return(NULL)}
+
   if(!"comments" %in% names(df_transactions)) df_transactions$comments <- NA_character_
 
   transaction_functions <- list(
@@ -38,8 +40,17 @@ ff_transactions.mfl_conn <- function(conn,...){
   purrr::map_dfr(transaction_functions,rlang::exec,df_transactions) %>%
     dplyr::arrange(dplyr::desc(.data$timestamp)) %>%
     dplyr::left_join(
-      dplyr::select(mfl_players(),"player_id","player_name","pos","team"),
-      by = "player_id")
+      dplyr::select(mfl_players(conn),"player_id","player_name","pos","team"),
+      by = "player_id") %>%
+    dplyr::left_join(
+      dplyr::select(ff_franchises(conn),"franchise_id","franchise_name"),
+      by = c("franchise"="franchise_id")
+    ) %>%
+    dplyr::select(dplyr::any_of(c("timestamp","type","type_desc",
+                                       "franchise_id"="franchise","franchise_name",
+                                       "player_id","player_name","pos","team",
+                                       "bbid_spent","trade_partner","comments")),
+                  dplyr::everything())
 
 }
 
@@ -82,22 +93,29 @@ ff_transactions.mfl_conn <- function(conn,...){
     dplyr::mutate_at(c('franchise1_gave_up','franchise2_gave_up'),~stringr::str_replace(.x,",$","")) %>%
     dplyr::mutate_at(c('franchise1_gave_up','franchise2_gave_up'),~stringr::str_split(.x,","))
 
-  parsed_trades %>%
+  df <- parsed_trades %>%
     dplyr::select(
       .data$timestamp,
       .data$type,
-      'franchise'=.data$franchise2,
-      'franchise2'=.data$franchise,
-      'franchise1_gave_up'=.data$franchise2_gave_up,
-      'franchise2_gave_up'=.data$franchise1_gave_up,
-      .data$comments) %>%
+      'franchise' = .data$franchise2,
+      'franchise2' = .data$franchise,
+      'franchise1_gave_up' = .data$franchise2_gave_up,
+      'franchise2_gave_up' = .data$franchise1_gave_up,
+      .data$comments
+    ) %>%
     dplyr::bind_rows(parsed_trades) %>%
-    dplyr::rename('trade_partner' = .data$franchise2,
-                  'traded_for' = .data$franchise2_gave_up,
-                  'traded_away' = .data$franchise1_gave_up) %>%
-    dplyr::arrange(dplyr::desc(.data$timestamp))
-
+    dplyr::rename(
+      'trade_partner' = .data$franchise2,
+      'traded_for' = .data$franchise2_gave_up,
+      'traded_away' = .data$franchise1_gave_up
+    ) %>%
+    dplyr::arrange(dplyr::desc(.data$timestamp)) %>%
+    tidyr::pivot_longer(c('traded_away', 'traded_for'),
+                        names_to = "type_desc",
+                        values_to = "player_id") %>%
+    tidyr::unnest("player_id")
 
+  return(df)
 }
 
 ## FREE AGENTS ##
diff --git a/R/zzz.R b/R/zzz.R
index f825311b..b1a9e9e3 100644
--- a/R/zzz.R
+++ b/R/zzz.R
@@ -7,6 +7,13 @@
   # Timeout lengths still up for discussion
   mfl_players <<- memoise::memoise(mfl_players,~ memoise::timeout(86400))
   mfl_allrules <<- memoise::memoise(mfl_allrules,~ memoise::timeout(86400))
+  dp_values <<- memoise::memoise(dp_values, ~ memoise::timeout(86400))
+  dp_playerids <<- memoise::memoise(dp_playerids, ~ memoise::timeout(86400))
+
+  ff_franchises <<- memoise::memoise(ff_franchises,~ memoise::timeout(86400))
+
+  ff_scoring <<- memoise::memoise(ff_scoring, ~ memoise::timeout(3600))
+
 
   env <-  rlang::env(
     user_agent = glue::glue(
diff --git a/man/ff_franchises.Rd b/man/ff_franchises.Rd
index 29c926f1..f8bc0ec6 100644
--- a/man/ff_franchises.Rd
+++ b/man/ff_franchises.Rd
@@ -2,12 +2,15 @@
 % Please edit documentation in R/generics.R, R/mfl_franchises.R
 \name{ff_franchises}
 \alias{ff_franchises}
+\alias{ff_franchises.default}
 \alias{ff_franchises.mfl_conn}
 \title{Get League Franchises}
 \usage{
 ff_franchises(conn)
 
-\method{ff_franchises}{mfl_conn}(conn)
+ff_franchises.default(conn)
+
+ff_franchises.mfl_conn(conn)
 }
 \arguments{
 \item{conn}{a conn object created by \code{ff_connect()}}
diff --git a/man/ff_scoring.Rd b/man/ff_scoring.Rd
index d590ff4a..7ce9ebcd 100644
--- a/man/ff_scoring.Rd
+++ b/man/ff_scoring.Rd
@@ -2,12 +2,15 @@
 % Please edit documentation in R/generics.R, R/mfl_scoring.R
 \name{ff_scoring}
 \alias{ff_scoring}
+\alias{ff_scoring.default}
 \alias{ff_scoring.mfl_conn}
 \title{Get League Scoring settings}
 \usage{
 ff_scoring(conn)
 
-\method{ff_scoring}{mfl_conn}(conn)
+ff_scoring.default(conn)
+
+ff_scoring.mfl_conn(conn)
 }
 \arguments{
 \item{conn}{a conn object created by \code{ff_connect()}}
diff --git a/man/mfl_players.Rd b/man/mfl_players.Rd
index 03f3b459..cb801266 100644
--- a/man/mfl_players.Rd
+++ b/man/mfl_players.Rd
@@ -4,7 +4,10 @@
 \alias{mfl_players}
 \title{MFL players library}
 \usage{
-mfl_players()
+mfl_players(conn = NULL)
+}
+\arguments{
+\item{conn}{optionally, pass in a conn object generated by ff_connect to receive league-specific players}
 }
 \value{
 a dataframe containing all ~2000+ players in the MFL database
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-5b11ff.R b/tests/testthat/api.myfantasyleague.com/2019/export-5b11ff.R
new file mode 100644
index 00000000..de7316d6
--- /dev/null
+++ b/tests/testthat/api.myfantasyleague.com/2019/export-5b11ff.R
@@ -0,0 +1,24 @@
+structure(list(url = "https://www61.myfantasyleague.com/2019/export?TYPE=league&L=54040&JSON=1", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:34:09 GMT", 
+        server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+        vary = "Accept-Encoding", `content-encoding` = "gzip", 
+        `content-length` = "1180", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+    "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:09 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            location = "https://www61.myfantasyleague.com/2019/export?TYPE=league&L=54040&JSON=1", 
+            `content-length` = "0", targethost = "www70"), class = c("insensitive", 
+        "list"))), list(status = 200L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:09 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            vary = "Accept-Encoding", `content-encoding` = "gzip", 
+            `content-length` = "1180", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+        "list")))), cookies = structure(list(domain = logical(0), 
+        flag = logical(0), path = logical(0), secure = logical(0), 
+        expiration = structure(numeric(0), class = c("POSIXct", 
+        "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
+    content = charToRaw("{\"version\":\"1.0\",\"league\":{\"currentWaiverType\":\"BBID_FCFS\",\"playerLimitUnit\":\"LEAGUE\",\"taxiSquad\":\"3\",\"endWeek\":\"17\",\"maxWaiverRounds\":\"8\",\"draft_kind\":\"email\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"franchises\":{\"count\":\"14\",\"franchise\":[{\"logo\":\"https://i.imgur.com/purgTuY.png\",\"icon\":\"https://i.imgur.com/purgTuY.png\",\"abbrev\":\"PIKA\",\"bbidAvailableBalance\":\"32.00\",\"name\":\"Team Pikachu\",\"id\":\"0001\",\"waiverSortOrder\":\"2\"},{\"logo\":\"https://i.imgur.com/spJaesT.png\",\"icon\":\"https://i.imgur.com/spJaesT.png\",\"abbrev\":\"SIMN\",\"bbidAvailableBalance\":\"70.00\",\"name\":\"Team Simon Belmont\",\"id\":\"0002\",\"waiverSortOrder\":\"4\"},{\"logo\":\"https://i.imgur.com/UW6ES3y.png\",\"icon\":\"https://i.imgur.com/UW6ES3y.png\",\"abbrev\":\"CFCN\",\"bbidAvailableBalance\":\"5.00\",\"name\":\"Team Captain Falcon\",\"id\":\"0003\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://i.imgur.com/Z51OK27.png\",\"icon\":\"https://i.imgur.com/Z51OK27.png\",\"abbrev\":\"ICE\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Ice Climbers\",\"id\":\"0004\",\"waiverSortOrder\":\"14\"},{\"logo\":\"https://i.imgur.com/wENaJKg.png\",\"icon\":\"https://i.imgur.com/wENaJKg.png\",\"abbrev\":\"DRM\",\"bbidAvailableBalance\":\"117.00\",\"name\":\"Team Dr. Mario\",\"id\":\"0005\",\"waiverSortOrder\":\"1\"},{\"logo\":\"https://i.imgur.com/5LnPtDi.png\",\"icon\":\"https://i.imgur.com/5LnPtDi.png\",\"abbrev\":\"KDDD\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team King Dedede\",\"id\":\"0006\",\"waiverSortOrder\":\"7\"},{\"logo\":\"https://i.imgur.com/eift9jP.png\",\"icon\":\"https://i.imgur.com/eift9jP.png\",\"abbrev\":\"KRBY\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Kirby\",\"id\":\"0007\",\"waiverSortOrder\":\"6\"},{\"logo\":\"https://i.imgur.com/AMtyw0W.png\",\"icon\":\"https://i.imgur.com/AMtyw0W.png\",\"abbrev\":\"FOX\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Fox\",\"id\":\"0008\",\"waiverSortOrder\":\"12\"},{\"logo\":\"https://i.imgur.com/0zprlfO.png\",\"icon\":\"https://i.imgur.com/0zprlfO.png\",\"abbrev\":\"LINK\",\"bbidAvailableBalance\":\"14.00\",\"name\":\"Team Link\",\"id\":\"0009\",\"waiverSortOrder\":\"11\"},{\"logo\":\"https://i.imgur.com/RvsGTLu.png\",\"icon\":\"https://i.imgur.com/RvsGTLu.png\",\"abbrev\":\"YSHI\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Yoshi\",\"id\":\"0010\",\"waiverSortOrder\":\"3\"},{\"logo\":\"https://i.imgur.com/zDt3q5J.png\",\"icon\":\"https://i.imgur.com/zDt3q5J.png\",\"abbrev\":\"DDY\",\"bbidAvailableBalance\":\"18.00\",\"name\":\"Team Diddy Kong\",\"id\":\"0011\",\"waiverSortOrder\":\"5\"},{\"logo\":\"https://i.imgur.com/GHB1pVY.png\",\"icon\":\"https://i.imgur.com/GHB1pVY.png\",\"abbrev\":\"MEW2\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Mewtwo\",\"id\":\"0012\",\"waiverSortOrder\":\"8\"},{\"logo\":\"https://i.imgur.com/lp2XsQE.png\",\"icon\":\"https://i.imgur.com/lp2XsQE.png\",\"bbidAvailableBalance\":\"195.00\",\"name\":\"Team Ness\",\"id\":\"0013\",\"waiverSortOrder\":\"10\"},{\"logo\":\"https://i.imgur.com/AQJ99hs.png\",\"icon\":\"https://i.imgur.com/AQJ99hs.png\",\"abbrev\":\"LUIG\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Luigi\",\"id\":\"0014\",\"waiverSortOrder\":\"9\"}]},\"standingsSort\":\"PCT,PTS,\",\"draftPlayerPool\":\"Rookie\",\"id\":\"54040\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":[{\"url\":\"https://www61.myfantasyleague.com/2019/home/54040\",\"year\":\"2019\"},{\"url\":\"https://www61.myfantasyleague.com/2018/home/54040\",\"year\":\"2018\"},{\"url\":\"https://www61.myfantasyleague.com/2020/home/54040\",\"year\":\"2020\"}]},\"rosterSize\":\"25\",\"name\":\"The Super Smash Bros Dynasty League\",\"bbidSeasonLimit\":\"200\",\"draftTimer\":\"ON\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"\",\"draftLimitHours\":\"12:00\",\"starters\":{\"count\":\"9\",\"position\":[{\"name\":\"QB\",\"limit\":\"1\"},{\"name\":\"RB\",\"limit\":\"1-6\"},{\"name\":\"WR\",\"limit\":\"1-6\"},{\"name\":\"TE\",\"limit\":\"1-6\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"17\",\"bestLineup\":\"No\",\"precision\":\"2\",\"lastRegularSeasonWeek\":\"16\",\"survivorPool\":\"Yes\",\"bbidTiebreaker\":\"TURN\",\"usesContractYear\":\"0\",\"injuredReserve\":\"3\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"17\",\"rostersPerPlayer\":\"1\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"baseURL\":\"https://www61.myfantasyleague.com\",\"loadRosters\":\"email_draft\"},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849649, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.240845, namelookup = 0.000443, 
+    connect = 0.030743, pretransfer = 0.10044, starttransfer = 0.418247, 
+    total = 0.418823)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-9df682.R b/tests/testthat/api.myfantasyleague.com/2019/export-9df682.R
index deec91f3..7c74bdf7 100644
--- a/tests/testthat/api.myfantasyleague.com/2019/export-9df682.R
+++ b/tests/testthat/api.myfantasyleague.com/2019/export-9df682.R
@@ -1,15 +1,15 @@
 structure(list(url = "https://www61.myfantasyleague.com/2019/export?TYPE=transactions&L=54040&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 01:31:03 GMT", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:34:02 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
         `content-length` = "11051", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
     "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Mon, 27 Jul 2020 01:31:03 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:02 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             location = "https://www61.myfantasyleague.com/2019/export?TYPE=transactions&L=54040&JSON=1", 
             `content-length` = "0", targethost = "www70"), class = c("insensitive", 
         "list"))), list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Mon, 27 Jul 2020 01:31:03 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:02 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
             `content-length` = "11051", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
@@ -18,7 +18,7 @@ structure(list(url = "https://www61.myfantasyleague.com/2019/export?TYPE=transac
         expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
     content = charToRaw("{\"version\":\"1.0\",\"transactions\":{\"transaction\":[{\"timestamp\":\"1581780504\",\"franchise\":\"0012\",\"transaction\":\"|11674,12634,12152,12176,13290,13115,4925,10308,11975,13672,13129,13246,14071,10261,11670,13850,13639,11640,12197,12317,13155,14057,10413,10696,13192,13621,12623,14093,14087,14106,\",\"type\":\"LOAD_ROSTERS\"},{\"timestamp\":\"1581780488\",\"franchise\":\"0005\",\"transaction\":\"|9988,7836,10723,12328,12913,10369,13794,11681,13154,13412,14435,14331,13668,11248,13418,13649,14284,13636,14120,14111,14118,11686,14315,12660,9714,13134,10708,13637,14267,14558,14592,\",\"type\":\"LOAD_ROSTERS\"},{\"timestamp\":\"1581780465\",\"franchise\":\"0001\",\"transaction\":\"|9662,13348,13968,8673,10738,13724,13753,13167,11677,13893,13194,14075,13176,13168,14076,11642,14086,12680,8062,12171,13645,14113,13644,11367,13864,8247,13165,9912,14058,14125,14063,\",\"type\":\"LOAD_ROSTERS\"},{\"timestamp\":\"1580289300\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1579684500\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1579154158\",\"franchise\":\"0013\",\"transaction\":\"|12625,11680,13189,12181,13163,11193,9918,11390,9308,13789,13254,14112,14137,14102,14085,13793,14109,13879,12934,7394,8658,12658,14101,13616,10409,11850,10273,13763,14140,13620,13591,\",\"type\":\"LOAD_ROSTERS\"},{\"timestamp\":\"1579154134\",\"franchise\":\"0002\",\"transaction\":\"|13153,9902,13139,13158,12261,12110,13135,12206,12141,13606,13313,13653,13319,13671,10697,14074,14096,13595,13121,11188,11925,13604,11454,13162,13377,12646,13612,9431,14062,14114,14104,\",\"type\":\"LOAD_ROSTERS\"},{\"timestamp\":\"1579079700\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1579075200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1578474900\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1578470400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1578247200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577952000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577870100\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577865600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577642400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577520000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577397600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577316553\",\"franchise\":\"0004\",\"transaction\":\"13427,|13238,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1577316533\",\"franchise\":\"0004\",\"transaction\":\"13880,|11199,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1577260800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1577260800\",\"franchise\":\"0004\",\"transaction\":\"13133,|0.00|11647,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1577260800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1577037600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1576842761\",\"franchise\":\"0012\",\"transaction\":\"10696,|12635,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1576656000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1576656000\",\"franchise\":\"0007\",\"transaction\":\"10838,|0.00|14752,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1576656000\",\"franchise\":\"0014\",\"transaction\":\"13640,|0.00|14464,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1576656000\",\"franchise\":\"0008\",\"transaction\":\"13868,|200.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1576656000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"\",\"timestamp\":\"1576644806\",\"franchise\":\"0008\",\"deactivated\":\"13608,13768,13642,\",\"type\":\"IR\"},{\"timestamp\":\"1576432800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1576429678\",\"franchise\":\"0007\",\"transaction\":\"14752,|13190,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13190,\",\"timestamp\":\"1576429611\",\"franchise\":\"0007\",\"deactivated\":\"10722,\",\"type\":\"IR\"},{\"timestamp\":\"1576265650\",\"franchise\":\"0004\",\"transaction\":\"13238,|12667,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13377,\",\"timestamp\":\"1576214740\",\"franchise\":\"0002\",\"deactivated\":\"9431,\",\"type\":\"IR\"},{\"activated\":\"14123,\",\"timestamp\":\"1576089530\",\"franchise\":\"0003\",\"deactivated\":\"14146,\",\"type\":\"IR\"},{\"timestamp\":\"1576051200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1576051200\",\"franchise\":\"0001\",\"transaction\":\"13864,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1576051200\",\"franchise\":\"0002\",\"transaction\":\"13162,|34.00|13638,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1576051200\",\"franchise\":\"0007\",\"transaction\":\"13776,|59.00|12212,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1576051200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1576048722\",\"demoted\":\"14239,\",\"franchise\":\"0004\",\"promoted\":\"12667,\",\"type\":\"TAXI\"},{\"timestamp\":\"1576046788\",\"demoted\":\"14138,\",\"franchise\":\"0011\",\"promoted\":\"13662,\",\"type\":\"TAXI\"},{\"timestamp\":\"1576029591\",\"demoted\":\"14342,\",\"franchise\":\"0014\",\"promoted\":\"14464,\",\"type\":\"TAXI\"},{\"timestamp\":\"1575828000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1575787217\",\"franchise\":\"0004\",\"transaction\":\"14194,|7422,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1575705600\",\"franchise\":\"0012\",\"transaction\":\"10413,|15.00|12596,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1575705600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1575575890\",\"franchise\":\"0004\",\"transaction\":\"11199,|14070,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1575532800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1575475315\",\"franchise\":\"0014\",\"transaction\":\"7391,|10413,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1575446400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1575446400\",\"franchise\":\"0011\",\"transaction\":\"12208,|6.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1575446400\",\"franchise\":\"0001\",\"transaction\":\"11367,|10.00|13238,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1575446400\",\"franchise\":\"0001\",\"transaction\":\"13644,|10.00|13640,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1575446400\",\"franchise\":\"0014\",\"transaction\":\"14342,|51.00|13776,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1575446400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"\",\"timestamp\":\"1575431506\",\"franchise\":\"0011\",\"deactivated\":\"11705,\",\"type\":\"IR\"},{\"timestamp\":\"1575431443\",\"franchise\":\"0011\",\"transaction\":\"|11834,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1575427187\",\"demoted\":\"14142,\",\"franchise\":\"0014\",\"promoted\":\"13776,\",\"type\":\"TAXI\"},{\"activated\":\"14057,\",\"timestamp\":\"1575415185\",\"franchise\":\"0012\",\"deactivated\":\"12623,\",\"type\":\"IR\"},{\"activated\":\"13155,\",\"timestamp\":\"1575415078\",\"franchise\":\"0012\",\"deactivated\":\"13621,\",\"type\":\"IR\"},{\"activated\":\"12628,\",\"timestamp\":\"1575400241\",\"franchise\":\"0004\",\"deactivated\":\"14116,\",\"type\":\"IR\"},{\"timestamp\":\"1575400230\",\"demoted\":\"14095,\",\"franchise\":\"0004\",\"promoted\":\"14116,\",\"type\":\"TAXI\"},{\"activated\":\"12632,\",\"timestamp\":\"1575379410\",\"franchise\":\"0003\",\"deactivated\":\"14123,\",\"type\":\"IR\"},{\"timestamp\":\"1575375637\",\"demoted\":\"14063,\",\"franchise\":\"0001\",\"promoted\":\"14113,\",\"type\":\"TAXI\"},{\"timestamp\":\"1575223200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1575212063\",\"franchise\":\"0014\",\"transaction\":\"10413,|12621,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1575004262\",\"franchise\":\"0014\",\"transaction\":\"14142,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"12171,13645,\",\"timestamp\":\"1574956046\",\"franchise\":\"0001\",\"deactivated\":\"13165,9912,\",\"type\":\"IR\"},{\"franchise2_gave_up\":\"FP_0004_2020_4,\",\"franchise2\":\"0001\",\"timestamp\":\"1574956014\",\"franchise1_gave_up\":\"8062,\",\"franchise\":\"0014\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1575208800\"},{\"timestamp\":\"1574916557\",\"franchise\":\"0004\",\"transaction\":\"14070,|11367,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574896312\",\"franchise\":\"0004\",\"transaction\":\"11647,|13505,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574885273\",\"franchise\":\"0010\",\"transaction\":\"12471,|11381,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574885122\",\"franchise\":\"0010\",\"transaction\":\"12207,|13133,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"11399,\",\"franchise2\":\"0005\",\"timestamp\":\"1574854609\",\"franchise1_gave_up\":\"9714,FP_0011_2020_4,\",\"franchise\":\"0011\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1575439200\"},{\"timestamp\":\"1574841600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1574821220\",\"demoted\":\"13999,\",\"franchise\":\"0010\",\"promoted\":\"14136,\",\"type\":\"TAXI\"},{\"activated\":\"12616,10960,13299,\",\"timestamp\":\"1574821192\",\"franchise\":\"0010\",\"deactivated\":\"13666,14126,14209,\",\"type\":\"IR\"},{\"franchise2_gave_up\":\"11657,\",\"franchise2\":\"0008\",\"timestamp\":\"1574820206\",\"franchise1_gave_up\":\"FP_0007_2020_3,\",\"franchise\":\"0010\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1575421200\"},{\"timestamp\":\"1574618400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1574604757\",\"franchise\":\"0012\",\"transaction\":\"12596,|10297,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13819,\",\"timestamp\":\"1574385131\",\"franchise\":\"0004\",\"deactivated\":\"7813,\",\"type\":\"IR\"},{\"timestamp\":\"1574385120\",\"franchise\":\"0004\",\"transaction\":\"7813,|11676,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"10729,\",\"timestamp\":\"1574384831\",\"franchise\":\"0004\",\"deactivated\":\"13679,\",\"type\":\"IR\"},{\"timestamp\":\"1574358474\",\"franchise\":\"0003\",\"transaction\":\"13387,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574357641\",\"demoted\":\"14067,\",\"franchise\":\"0004\",\"promoted\":\"13679,\",\"type\":\"TAXI\"},{\"timestamp\":\"1574345980\",\"franchise\":\"0003\",\"transaction\":\"|10354,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574318659\",\"franchise\":\"0004\",\"transaction\":\"11367,|12868,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574266902\",\"demoted\":\"13662,\",\"franchise\":\"0011\",\"promoted\":\"14097,\",\"type\":\"TAXI\"},{\"timestamp\":\"1574236800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1574236800\",\"franchise\":\"0012\",\"transaction\":\"12635,|60.00|13847,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1574236800\",\"franchise\":\"0006\",\"transaction\":\"13615,|200.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1574236800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1574213920\",\"demoted\":\"14464,\",\"franchise\":\"0014\",\"promoted\":\"13631,\",\"type\":\"TAXI\"},{\"timestamp\":\"1574195118\",\"franchise\":\"0006\",\"transaction\":\"|13289,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"14072,\",\"timestamp\":\"1574195077\",\"franchise\":\"0006\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1574195013\",\"franchise\":\"0006\",\"transaction\":\"|13849,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574195004\",\"franchise\":\"0006\",\"transaction\":\"|14465,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"FP_0008_2020_2,FP_0009_2020_4,FP_0001_2020_4,\",\"franchise2\":\"0009\",\"timestamp\":\"1574184726\",\"franchise1_gave_up\":\"11747,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1574726400\"},{\"timestamp\":\"1574184701\",\"franchise\":\"0009\",\"transaction\":\"|13427,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1574151315\",\"demoted\":\"13895,\",\"franchise\":\"0010\",\"promoted\":\"13635,\",\"type\":\"TAXI\"},{\"timestamp\":\"1574013600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1574007375\",\"demoted\":\"13635,\",\"franchise\":\"0010\",\"promoted\":\"14126,\",\"type\":\"TAXI\"},{\"timestamp\":\"1574003315\",\"franchise\":\"0014\",\"transaction\":\"14464,|7942,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1573895583\",\"franchise\":\"0004\",\"transaction\":\"12868,|11367,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1573894954\",\"demoted\":\"12667,\",\"franchise\":\"0004\",\"promoted\":\"14280,\",\"type\":\"TAXI\"},{\"timestamp\":\"1573894938\",\"demoted\":\"13679,\",\"franchise\":\"0004\",\"promoted\":\"13809,\",\"type\":\"TAXI\"},{\"activated\":\"11938,\",\"timestamp\":\"1573856454\",\"franchise\":\"0007\",\"deactivated\":\"13882,\",\"type\":\"IR\"},{\"timestamp\":\"1573856402\",\"franchise\":\"0007\",\"transaction\":\"13882,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1573856323\",\"franchise\":\"0007\",\"deactivated\":\"11938,\",\"type\":\"IR\"},{\"timestamp\":\"1573829425\",\"franchise\":\"0006\",\"transaction\":\"13849,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1573829409\",\"demoted\":\"13919,\",\"franchise\":\"0006\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"12391,\",\"franchise2\":\"0014\",\"timestamp\":\"1573682319\",\"franchise1_gave_up\":\"11886,\",\"franchise\":\"0007\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1574269200\"},{\"timestamp\":\"1573667121\",\"franchise\":\"0003\",\"transaction\":\"10354,|13615,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1573632000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1573632000\",\"franchise\":\"0002\",\"transaction\":\"11454,|0.00|13057,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1573632000\",\"franchise\":\"0012\",\"transaction\":\"10297,|13.00|10838,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1573632000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"14195,\",\"timestamp\":\"1573520845\",\"franchise\":\"0010\",\"deactivated\":\"13299,\",\"type\":\"IR\"},{\"timestamp\":\"1573408800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1573395389\",\"franchise\":\"0012\",\"transaction\":\"12623,|12792,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1573333902\",\"franchise\":\"0011\",\"transaction\":\"13988,|8944,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"11672,\",\"timestamp\":\"1573327024\",\"franchise\":\"0010\",\"deactivated\":\"12616,\",\"type\":\"IR\"},{\"activated\":\"13999,13666,\",\"timestamp\":\"1573278266\",\"franchise\":\"0010\",\"deactivated\":\"11672,14195,\",\"type\":\"IR\"},{\"franchise2_gave_up\":\"12317,\",\"franchise2\":\"0014\",\"timestamp\":\"1573244981\",\"franchise1_gave_up\":\"9075,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1573344000\"},{\"timestamp\":\"1573195181\",\"franchise\":\"0004\",\"transaction\":\"11367,|14321,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1573195158\",\"demoted\":\"13809,\",\"franchise\":\"0004\",\"promoted\":\"14321,\",\"type\":\"TAXI\"},{\"timestamp\":\"1573139595\",\"franchise\":\"0006\",\"transaction\":\"13289,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1573135348\",\"franchise\":\"0003\",\"transaction\":\"13615,|11213,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1573129936\",\"franchise\":\"0006\",\"deactivated\":\"14088,\",\"type\":\"IR\"},{\"timestamp\":\"1573129906\",\"franchise\":\"0006\",\"transaction\":\"14088,|12319,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13605,\",\"timestamp\":\"1573129714\",\"franchise\":\"0006\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1573027200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1573027200\",\"franchise\":\"0003\",\"transaction\":\"11758,|0.00|13641,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1573027200\",\"franchise\":\"0004\",\"transaction\":\"11676,|0.00|13884,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1573027200\",\"franchise\":\"0011\",\"transaction\":\"12155,|3.00|10870,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1573027200\",\"franchise\":\"0011\",\"transaction\":\"9714,|6.00|7480,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1573027200\",\"franchise\":\"0007\",\"transaction\":\"13391,|61.00|13644,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1573027200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"12205,\",\"timestamp\":\"1573004252\",\"franchise\":\"0014\",\"deactivated\":\"9064,\",\"type\":\"IR\"},{\"activated\":\"13138,\",\"timestamp\":\"1572982822\",\"franchise\":\"0007\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1572982809\",\"franchise\":\"0007\",\"transaction\":\"|12596,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"10699,\",\"timestamp\":\"1572979988\",\"franchise\":\"0004\",\"deactivated\":\"10729,\",\"type\":\"IR\"},{\"activated\":\"13633,\",\"timestamp\":\"1572962759\",\"franchise\":\"0010\",\"deactivated\":\"13999,13666,\",\"type\":\"IR\"},{\"timestamp\":\"1572962709\",\"demoted\":\"14069,\",\"franchise\":\"0010\",\"promoted\":\"13589,\",\"type\":\"TAXI\"},{\"timestamp\":\"1572804000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1572778238\",\"franchise\":\"0014\",\"transaction\":\"7942,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13613,\",\"timestamp\":\"1572729078\",\"franchise\":\"0006\",\"deactivated\":\"12378,\",\"type\":\"IR\"},{\"timestamp\":\"1572728398\",\"franchise\":\"0006\",\"transaction\":\"14465,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1572728057\",\"franchise\":\"0004\",\"transaction\":\"11448,|14088,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"14088,\",\"timestamp\":\"1572728044\",\"franchise\":\"0004\",\"deactivated\":\"12628,\",\"type\":\"IR\"},{\"timestamp\":\"1572727655\",\"demoted\":\"14107,\",\"franchise\":\"0006\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1572727573\",\"franchise\":\"0006\",\"transaction\":\"13452,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1572727546\",\"franchise\":\"0006\",\"deactivated\":\"14072,\",\"type\":\"IR\"},{\"timestamp\":\"1572678000\",\"franchise\":\"0007\",\"transaction\":\"13240,|17.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1572678000\",\"franchise\":\"0003\",\"transaction\":\"12154,|75.00|12155,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1572678000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1572625311\",\"franchise\":\"0004\",\"transaction\":\"12628,|12631,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1572566650\",\"franchise\":\"0014\",\"transaction\":\"|12464,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1572505200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1572477284\",\"franchise\":\"0012\",\"transaction\":\"12197,|14289,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1572477210\",\"demoted\":\"14106,\",\"franchise\":\"0012\",\"promoted\":\"14289,\",\"type\":\"TAXI\"},{\"activated\":\"14106,\",\"timestamp\":\"1572477180\",\"franchise\":\"0012\",\"deactivated\":\"13155,\",\"type\":\"IR\"},{\"timestamp\":\"1572447007\",\"demoted\":\"14124,\",\"franchise\":\"0007\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1572431229\",\"franchise\":\"0013\",\"transaction\":\"10409,|12154,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1572429540\",\"franchise\":\"0002\",\"transaction\":\"13057,|14265,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1572429420\",\"demoted\":\"14104,\",\"franchise\":\"0002\",\"promoted\":\"14265,\",\"type\":\"TAXI\"},{\"timestamp\":\"1572418800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1572418800\",\"franchise\":\"0003\",\"transaction\":\"13814,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1572418800\",\"franchise\":\"0009\",\"transaction\":\"12394,|0.00|9899,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1572418800\",\"franchise\":\"0014\",\"transaction\":\"12621,|16.00|13240,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1572418800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1572369240\",\"demoted\":\"14618,\",\"franchise\":\"0003\",\"promoted\":\"14068,\",\"type\":\"TAXI\"},{\"timestamp\":\"1572195600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"activated\":\"9912,\",\"timestamp\":\"1572191215\",\"franchise\":\"0001\",\"deactivated\":\"12171,\",\"type\":\"IR\"},{\"timestamp\":\"1572187255\",\"franchise\":\"0012\",\"transaction\":\"12792,|11758,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1572135743\",\"demoted\":\"13591,\",\"franchise\":\"0013\",\"promoted\":\"13616,\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1572048044\",\"franchise\":\"0001\",\"deactivated\":\"13645,\",\"type\":\"IR\"},{\"timestamp\":\"1572016639\",\"franchise\":\"0005\",\"transaction\":\"12660,|14316,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"12150,\",\"franchise2\":\"0001\",\"timestamp\":\"1572010166\",\"franchise1_gave_up\":\"12171,\",\"franchise\":\"0008\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1572609600\"},{\"timestamp\":\"1571996249\",\"demoted\":\"14113,\",\"franchise\":\"0001\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"13607,11456,12263,\",\"franchise2\":\"0001\",\"timestamp\":\"1571996162\",\"franchise1_gave_up\":\"14086,14113,12680,FP_0008_2020_1,FP_0009_2020_2,\",\"franchise\":\"0009\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1572573600\"},{\"timestamp\":\"1571996143\",\"franchise\":\"0001\",\"transaction\":\"|11454,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"13131,FP_0014_2020_3,\",\"franchise2\":\"0014\",\"timestamp\":\"1571970448\",\"franchise1_gave_up\":\"11671,\",\"franchise\":\"0007\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1572494400\"},{\"timestamp\":\"1571959698\",\"franchise\":\"0009\",\"transaction\":\"12645,|9706,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1571955298\",\"franchise\":\"0005\",\"transaction\":\"14315,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1571869480\",\"franchise\":\"0007\",\"transaction\":\"11529,|12197,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1571865416\",\"franchise\":\"0011\",\"transaction\":\"10870,|12159,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"12150,13645,\",\"timestamp\":\"1571863895\",\"franchise\":\"0001\",\"deactivated\":\"9912,\",\"type\":\"IR\"},{\"timestamp\":\"1571848212\",\"franchise\":\"0004\",\"transaction\":\"12631,|14373,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1571843486\",\"franchise\":\"0003\",\"deactivated\":\"10737,\",\"type\":\"IR\"},{\"timestamp\":\"1571843473\",\"franchise\":\"0003\",\"transaction\":\"|10983,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"14305,\",\"franchise2\":\"0001\",\"timestamp\":\"1571836348\",\"franchise1_gave_up\":\"FP_0011_2020_3,\",\"franchise\":\"0011\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1572307200\"},{\"timestamp\":\"1571836302\",\"franchise\":\"0011\",\"transaction\":\"|7942,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1571814000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1571814000\",\"franchise\":\"0014\",\"transaction\":\"13240,|0.00|12182,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571814000\",\"franchise\":\"0004\",\"transaction\":\"13505,|0.00|13652,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571814000\",\"franchise\":\"0011\",\"transaction\":\"8944,|56.00|13289,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571814000\",\"franchise\":\"0011\",\"transaction\":\"7480,|56.00|14338,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571814000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"13604,\",\"timestamp\":\"1571801360\",\"franchise\":\"0002\",\"deactivated\":\"13612,\",\"type\":\"IR\"},{\"timestamp\":\"1571590800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"activated\":\"14195,\",\"timestamp\":\"1571528583\",\"franchise\":\"0010\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1571528559\",\"franchise\":\"0010\",\"deactivated\":\"10960,\",\"type\":\"IR\"},{\"activated\":\"13999,\",\"timestamp\":\"1571435332\",\"franchise\":\"0010\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1571435332\",\"franchise\":\"0010\",\"transaction\":\"|12207,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"14101,\",\"timestamp\":\"1571316837\",\"franchise\":\"0013\",\"deactivated\":\"13763,\",\"type\":\"IR\"},{\"timestamp\":\"1571293085\",\"franchise\":\"0004\",\"transaction\":\"13652,|14294,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1571251643\",\"franchise\":\"0006\",\"transaction\":\"|12208,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1571209200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1571209200\",\"franchise\":\"0002\",\"transaction\":\"11925,|1.00|11676,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571209200\",\"franchise\":\"0003\",\"transaction\":\"11213,|10.00|13136,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571209200\",\"franchise\":\"0014\",\"transaction\":\"8062,|12.00|14315,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571209200\",\"franchise\":\"0009\",\"transaction\":\"13632,|35.00|11448,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1571209200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1571179659\",\"demoted\":\"13631,\",\"franchise\":\"0014\",\"promoted\":\"14315,\",\"type\":\"TAXI\"},{\"activated\":\"12676,\",\"timestamp\":\"1571142877\",\"franchise\":\"0006\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1571142854\",\"demoted\":\"\",\"franchise\":\"0006\",\"promoted\":\"14072,\",\"type\":\"TAXI\"},{\"timestamp\":\"1571142810\",\"franchise\":\"0006\",\"transaction\":\"|12916,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1571142800\",\"franchise\":\"0006\",\"transaction\":\"|12629,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13666,\",\"timestamp\":\"1570996908\",\"franchise\":\"0010\",\"deactivated\":\"13633,\",\"type\":\"IR\"},{\"timestamp\":\"1570986000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1570928073\",\"franchise\":\"0010\",\"transaction\":\"14069,|13594,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"9912,\",\"timestamp\":\"1570912264\",\"franchise\":\"0001\",\"deactivated\":\"12150,\",\"type\":\"IR\"},{\"activated\":\"13640,\",\"timestamp\":\"1570902219\",\"franchise\":\"0001\",\"deactivated\":\"8247,\",\"type\":\"IR\"},{\"timestamp\":\"1570863600\",\"franchise\":\"0014\",\"transaction\":\"13148,|0.00|13057,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1570863600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1570834380\",\"franchise\":\"0011\",\"transaction\":\"12159,|10318,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570819806\",\"demoted\":\"\",\"franchise\":\"0007\",\"promoted\":\"13863,\",\"type\":\"TAXI\"},{\"timestamp\":\"1570819806\",\"franchise\":\"0007\",\"transaction\":\"|13240,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570752245\",\"franchise\":\"0012\",\"transaction\":\"10838,|12471,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570690800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1570669955\",\"franchise\":\"0006\",\"transaction\":\"12916,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"12801,\",\"timestamp\":\"1570669736\",\"franchise\":\"0006\",\"deactivated\":\"13613,\",\"type\":\"IR\"},{\"timestamp\":\"1570627915\",\"franchise\":\"0004\",\"transaction\":\"13884,|13868,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570604400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1570604400\",\"franchise\":\"0014\",\"transaction\":\"13057,|0.00|13632,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1570604400\",\"franchise\":\"0003\",\"transaction\":\"14618,|10.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1570604400\",\"franchise\":\"0012\",\"transaction\":\"13847,|14.00|13148,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1570604400\",\"franchise\":\"0003\",\"transaction\":\"14613,|15.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1570604400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"\",\"timestamp\":\"1570561109\",\"franchise\":\"0003\",\"deactivated\":\"10983,12330,\",\"type\":\"IR\"},{\"timestamp\":\"1570381200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1570368489\",\"franchise\":\"0012\",\"transaction\":\"11758,|9427,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570336970\",\"franchise\":\"0010\",\"transaction\":\"13857,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1570336944\",\"franchise\":\"0010\",\"deactivated\":\"13666,\",\"type\":\"IR\"},{\"timestamp\":\"1570336852\",\"franchise\":\"0010\",\"transaction\":\"13666,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1570336830\",\"franchise\":\"0010\",\"deactivated\":\"13999,\",\"type\":\"IR\"},{\"timestamp\":\"1570336808\",\"franchise\":\"0010\",\"transaction\":\"13999,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570320010\",\"franchise\":\"0004\",\"transaction\":\"12667,|14613,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570258800\",\"franchise\":\"0003\",\"transaction\":\"14081,|5.00|7391,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1570258800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1570235324\",\"franchise\":\"0014\",\"transaction\":\"13632,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570211928\",\"franchise\":\"0009\",\"transaction\":\"9899,|11931,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570132913\",\"franchise\":\"0006\",\"transaction\":\"|13438,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570086000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1570077803\",\"franchise\":\"0011\",\"transaction\":\"10318,|11957,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570054774\",\"demoted\":\"14315,\",\"franchise\":\"0014\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1570047070\",\"demoted\":\"\",\"franchise\":\"0008\",\"promoted\":\"13642,\",\"type\":\"TAXI\"},{\"timestamp\":\"1570047070\",\"franchise\":\"0008\",\"transaction\":\"|11758,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1570037738\",\"demoted\":\"14131,\",\"franchise\":\"0007\",\"promoted\":\"13644,\",\"type\":\"TAXI\"},{\"timestamp\":\"1570037352\",\"franchise\":\"0007\",\"transaction\":\"14131,|14081,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569999600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1569999600\",\"franchise\":\"0014\",\"transaction\":\"14315,|0.00|14297,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569999600\",\"franchise\":\"0011\",\"transaction\":\"10932,|16.00|12645,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569999600\",\"franchise\":\"0009\",\"transaction\":\"9706,|83.00|13326,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569999600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1569950008\",\"franchise\":\"0009\",\"transaction\":\"|11199,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569776400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1569721819\",\"franchise\":\"0006\",\"transaction\":\"13438,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569721774\",\"demoted\":\"14072,\",\"franchise\":\"0006\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1569721225\",\"franchise\":\"0013\",\"transaction\":\"12154,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569721183\",\"demoted\":\"13620,\",\"franchise\":\"0013\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1569682075\",\"demoted\":\"14116,\",\"franchise\":\"0004\",\"promoted\":\"13868,\",\"type\":\"TAXI\"},{\"timestamp\":\"1569681546\",\"franchise\":\"0004\",\"transaction\":\"14613,|11367,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569654000\",\"franchise\":\"0005\",\"transaction\":\"11686,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569654000\",\"franchise\":\"0002\",\"transaction\":\"13638,|5.00|13663,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569654000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1569611238\",\"franchise\":\"0011\",\"transaction\":\"14338,|13814,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569611206\",\"demoted\":\"14082,\",\"franchise\":\"0011\",\"promoted\":\"13814,\",\"type\":\"TAXI\"},{\"activated\":\"14082,\",\"timestamp\":\"1569611173\",\"franchise\":\"0011\",\"deactivated\":\"11834,\",\"type\":\"IR\"},{\"timestamp\":\"1569595331\",\"franchise\":\"0005\",\"transaction\":\"14118,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569595198\",\"franchise\":\"0005\",\"transaction\":\"14111,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569595138\",\"franchise\":\"0005\",\"transaction\":\"14316,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569593671\",\"franchise\":\"0004\",\"transaction\":\"11367,|8062,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569481200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"11188,\",\"timestamp\":\"1569446734\",\"franchise\":\"0002\",\"deactivated\":\"13604,\",\"type\":\"IR\"},{\"timestamp\":\"1569439179\",\"demoted\":\"13589,\",\"franchise\":\"0010\",\"promoted\":\"14209,\",\"type\":\"TAXI\"},{\"timestamp\":\"1569439148\",\"franchise\":\"0010\",\"transaction\":\"11337,|13994,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569439024\",\"franchise\":\"0010\",\"transaction\":\"11381,|14314,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13592,\",\"timestamp\":\"1569437711\",\"franchise\":\"0007\",\"deactivated\":\"11668,\",\"type\":\"IR\"},{\"timestamp\":\"1569437691\",\"franchise\":\"0007\",\"transaction\":\"11668,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1569437569\",\"franchise\":\"0007\",\"deactivated\":\"13592,\",\"type\":\"IR\"},{\"timestamp\":\"1569437569\",\"franchise\":\"0007\",\"transaction\":\"|12444,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"14120,FP_0004_2020_2,\",\"franchise2\":\"0012\",\"timestamp\":\"1569436801\",\"franchise1_gave_up\":\"11747,9075,\",\"franchise\":\"0005\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1570039200\"},{\"timestamp\":\"1569436791\",\"franchise\":\"0012\",\"transaction\":\"|13638,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"7394,8658,12658,\",\"franchise2\":\"0005\",\"timestamp\":\"1569422379\",\"franchise1_gave_up\":\"14284,13636,FP_0012_2020_2,\",\"franchise\":\"0013\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1570017600\"},{\"timestamp\":\"1569422275\",\"franchise\":\"0013\",\"transaction\":\"|11812,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1569394800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1569394800\",\"franchise\":\"0003\",\"transaction\":\"7391,|5.00|12773,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569394800\",\"franchise\":\"0013\",\"transaction\":\"12934,|5.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569394800\",\"franchise\":\"0011\",\"transaction\":\"12645,|6.00|11925,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569394800\",\"franchise\":\"0012\",\"transaction\":\"13638,|7.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569394800\",\"franchise\":\"0009\",\"transaction\":\"13108,|15.00|11686,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569394800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"13679,\",\"timestamp\":\"1569357656\",\"franchise\":\"0004\",\"deactivated\":\"14088,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1569357172\",\"franchise\":\"0013\",\"deactivated\":\"10273,\",\"type\":\"IR\"},{\"timestamp\":\"1569347992\",\"franchise\":\"0012\",\"transaction\":\"|13999,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"11640,\",\"franchise2\":\"0013\",\"timestamp\":\"1569323788\",\"franchise1_gave_up\":\"13879,FP_0012_2020_4,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1569888000\"},{\"timestamp\":\"1569171600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1569150691\",\"franchise\":\"0001\",\"transaction\":\"11642,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1569150658\",\"franchise\":\"0001\",\"deactivated\":\"13645,\",\"type\":\"IR\"},{\"timestamp\":\"1569121396\",\"franchise\":\"0012\",\"transaction\":\"12471,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1569121308\",\"franchise\":\"0012\",\"deactivated\":\"13192,\",\"type\":\"IR\"},{\"timestamp\":\"1569121117\",\"demoted\":\"13607,\",\"franchise\":\"0001\",\"promoted\":\"14076,\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"10703,9925,8687,\",\"franchise2\":\"0001\",\"timestamp\":\"1569121027\",\"franchise1_gave_up\":\"14075,13176,13168,FP_0014_2020_2,\",\"franchise\":\"0014\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1569128400\"},{\"franchise2_gave_up\":\"13194,FP_0003_2020_1,\",\"franchise2\":\"0008\",\"timestamp\":\"1569113657\",\"franchise1_gave_up\":\"11228,\",\"franchise\":\"0001\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1569715200\"},{\"timestamp\":\"1569049200\",\"franchise\":\"0012\",\"transaction\":\"14120,|33.00|7391,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1569049200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"\",\"timestamp\":\"1569026354\",\"franchise\":\"0014\",\"deactivated\":\"13316,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1569007140\",\"franchise\":\"0013\",\"deactivated\":\"11850,\",\"type\":\"IR\"},{\"timestamp\":\"1569004357\",\"demoted\":\"\",\"franchise\":\"0006\",\"promoted\":\"13623,14122,\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1569004259\",\"franchise\":\"0006\",\"deactivated\":\"13605,12676,\",\"type\":\"IR\"},{\"franchise2_gave_up\":\"11657,7393,\",\"franchise2\":\"0005\",\"timestamp\":\"1568930164\",\"franchise1_gave_up\":\"13418,13649,FP_0008_2020_3,\",\"franchise\":\"0008\",\"type\":\"TRADE\",\"comments\":\"as discussed\",\"expires\":\"1569531600\"},{\"timestamp\":\"1568930084\",\"franchise\":\"0005\",\"transaction\":\"|12471,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568930072\",\"franchise\":\"0005\",\"transaction\":\"|10838,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568886916\",\"demoted\":\"13636,\",\"franchise\":\"0013\",\"promoted\":\"14109,\",\"type\":\"TAXI\"},{\"timestamp\":\"1568876400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1568869008\",\"franchise\":\"0007\",\"transaction\":\"13240,|12934,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568858418\",\"franchise\":\"0010\",\"transaction\":\"13994,|13438,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"FP_0007_2020_3,\",\"franchise2\":\"0007\",\"timestamp\":\"1568855675\",\"franchise1_gave_up\":\"7877,\",\"franchise\":\"0010\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1569459600\"},{\"timestamp\":\"1568855668\",\"franchise\":\"0007\",\"transaction\":\"|13144,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568821977\",\"demoted\":\"13669,\",\"franchise\":\"0011\",\"promoted\":\"14080,\",\"type\":\"TAXI\"},{\"timestamp\":\"1568808300\",\"franchise\":\"0011\",\"transaction\":\"13669,|12381,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568790000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1568790000\",\"franchise\":\"0004\",\"transaction\":\"13809,|0.00|7236,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568790000\",\"franchise\":\"0007\",\"transaction\":\"13144,|3.00|11101,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568790000\",\"franchise\":\"0009\",\"transaction\":\"11686,|8.00|13108,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568790000\",\"franchise\":\"0012\",\"transaction\":\"13879,|9.00|10409,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568790000\",\"franchise\":\"0011\",\"transaction\":\"13289,|27.00|10870,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568790000\",\"franchise\":\"0014\",\"transaction\":\"12182,|94.00|14120,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568790000\",\"franchise\":\"0010\",\"transaction\":\"13594,|109.00|14078,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568790000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"13121,\",\"timestamp\":\"1568777666\",\"franchise\":\"0002\",\"deactivated\":\"13377,\",\"type\":\"IR\"},{\"timestamp\":\"1568775541\",\"demoted\":\"14075,14141,\",\"franchise\":\"0014\",\"promoted\":\"14120,14297,\",\"type\":\"TAXI\"},{\"activated\":\"13316,\",\"timestamp\":\"1568775232\",\"franchise\":\"0014\",\"deactivated\":\"7401,\",\"type\":\"IR\"},{\"timestamp\":\"1568720818\",\"demoted\":\"14240,\",\"franchise\":\"0003\",\"promoted\":\"14146,\",\"type\":\"TAXI\"},{\"timestamp\":\"1568566800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1568554712\",\"franchise\":\"0011\",\"transaction\":\"14017,|10709,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"9831,\",\"timestamp\":\"1568554422\",\"franchise\":\"0011\",\"deactivated\":\"11761,\",\"type\":\"IR\"},{\"timestamp\":\"1568444400\",\"franchise\":\"0005\",\"transaction\":\"12471,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568444400\",\"franchise\":\"0007\",\"transaction\":\"12596,|1.00|13882,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568444400\",\"franchise\":\"0003\",\"transaction\":\"13136,|5.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568444400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"14088,\",\"timestamp\":\"1568389106\",\"franchise\":\"0004\",\"deactivated\":\"13679,\",\"type\":\"IR\"},{\"timestamp\":\"1568305424\",\"franchise\":\"0008\",\"transaction\":\"|14191,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568298845\",\"franchise\":\"0011\",\"transaction\":\"12381,|11654,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568297158\",\"franchise\":\"0009\",\"transaction\":\"12185,|12154,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568271600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1568241295\",\"franchise\":\"0010\",\"transaction\":\"13438,|12833,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568233695\",\"franchise\":\"0010\",\"transaction\":\"9823,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568231693\",\"franchise\":\"0004\",\"transaction\":\"7236,|11367,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568228918\",\"franchise\":\"0006\",\"transaction\":\"10432,|13119,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"13679,7422,\",\"timestamp\":\"1568222671\",\"franchise\":\"0004\",\"deactivated\":\"10699,13819,\",\"type\":\"IR\"},{\"timestamp\":\"1568215058\",\"franchise\":\"0003\",\"transaction\":\"13641,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568215020\",\"franchise\":\"0003\",\"transaction\":\"12155,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568213002\",\"demoted\":\"14558,14592,\",\"franchise\":\"0005\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"11244,\",\"franchise2\":\"0005\",\"timestamp\":\"1568212952\",\"franchise1_gave_up\":\"11657,13668,11248,FP_0005_2020_1,\",\"franchise\":\"0003\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1568808000\"},{\"timestamp\":\"1568212943\",\"franchise\":\"0005\",\"transaction\":\"|13179,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568210445\",\"franchise\":\"0006\",\"transaction\":\"13119,|\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1568210371\",\"franchise\":\"0006\",\"deactivated\":\"12801,\",\"type\":\"IR\"},{\"timestamp\":\"1568200933\",\"demoted\":\"14289,\",\"franchise\":\"0012\",\"promoted\":\"13639,\",\"type\":\"TAXI\"},{\"timestamp\":\"1568200904\",\"franchise\":\"0012\",\"transaction\":\"14289,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1568185200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0010\",\"transaction\":\"14612,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0010\",\"transaction\":\"12800,|0.00|14313,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0004\",\"transaction\":\"12627,|0.00|11668,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0001\",\"transaction\":\"13893,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0007\",\"transaction\":\"13882,|2.00|14108,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0009\",\"transaction\":\"11931,|2.00|12471,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0007\",\"transaction\":\"11101,|3.00|13816,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0003\",\"transaction\":\"12330,|10.00|12596,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0009\",\"transaction\":\"13326,|13.00|13136,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0010\",\"transaction\":\"14317,|16.00|14131,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0014\",\"transaction\":\"12464,|26.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"0004\",\"transaction\":\"14067,|201.00|13240,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1568185200\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"franchise2_gave_up\":\"13850,FP_0004_2020_2,\",\"franchise2\":\"0004\",\"timestamp\":\"1568176954\",\"franchise1_gave_up\":\"10699,BB_54,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1568246400\"},{\"timestamp\":\"1568175223\",\"demoted\":\"14209,\",\"franchise\":\"0010\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1568174708\",\"demoted\":\"\",\"franchise\":\"0010\",\"promoted\":\"13633,\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1568164732\",\"franchise\":\"0010\",\"deactivated\":\"14195,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1568162690\",\"franchise\":\"0014\",\"deactivated\":\"12205,\",\"type\":\"IR\"},{\"timestamp\":\"1568155548\",\"franchise\":\"0005\",\"transaction\":\"|13916,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567962000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"franchise2_gave_up\":\"11677,FP_0007_2020_2,\",\"franchise2\":\"0007\",\"timestamp\":\"1567903699\",\"franchise1_gave_up\":\"12157,\",\"franchise\":\"0001\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1568505600\"},{\"activated\":\"10695,\",\"timestamp\":\"1567718975\",\"franchise\":\"0010\",\"deactivated\":\"\",\"type\":\"IR\"},{\"franchise2_gave_up\":\"FP_0013_2020_3,\",\"franchise2\":\"0013\",\"timestamp\":\"1567611953\",\"franchise1_gave_up\":\"13793,\",\"franchise\":\"0001\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1568214000\"},{\"activated\":\"\",\"timestamp\":\"1567611227\",\"franchise\":\"0013\",\"deactivated\":\"14101,\",\"type\":\"IR\"},{\"timestamp\":\"1567607857\",\"demoted\":\"13644,\",\"franchise\":\"0007\",\"promoted\":\"14108,\",\"type\":\"TAXI\"},{\"timestamp\":\"1567607681\",\"demoted\":\"14076,\",\"franchise\":\"0001\",\"promoted\":\"13793,\",\"type\":\"TAXI\"},{\"timestamp\":\"1567581300\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1567580400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0009\",\"transaction\":\"13488,|0.00|10956,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0011\",\"transaction\":\"12857,|0.00|13963,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0005\",\"transaction\":\"14331,|3.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0007\",\"transaction\":\"13644,|3.00|14315,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0002\",\"transaction\":\"13377,|3.00|11076,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0005\",\"transaction\":\"14592,|5.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0007\",\"transaction\":\"14081,|5.00|14098,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0001\",\"transaction\":\"14305,|21.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0001\",\"transaction\":\"13167,|21.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0005\",\"transaction\":\"11399,|25.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0005\",\"transaction\":\"14435,|25.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0005\",\"transaction\":\"14558,|25.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"0001\",\"transaction\":\"13753,|51.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1567580400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"activated\":\"\",\"timestamp\":\"1567513545\",\"franchise\":\"0003\",\"deactivated\":\"12632,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1567459827\",\"franchise\":\"0012\",\"deactivated\":\"14057,\",\"type\":\"IR\"},{\"activated\":\"11668,\",\"timestamp\":\"1567459457\",\"franchise\":\"0004\",\"deactivated\":\"14088,\",\"type\":\"IR\"},{\"timestamp\":\"1567459449\",\"demoted\":\"14280,\",\"franchise\":\"0004\",\"promoted\":\"14088,\",\"type\":\"TAXI\"},{\"activated\":\"11076,\",\"timestamp\":\"1567378546\",\"franchise\":\"0002\",\"deactivated\":\"11188,\",\"type\":\"IR\"},{\"timestamp\":\"1567378443\",\"franchise\":\"0002\",\"transaction\":\"|11175,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567378397\",\"franchise\":\"0002\",\"transaction\":\"|12177,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567378388\",\"franchise\":\"0002\",\"transaction\":\"|12667,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567378380\",\"franchise\":\"0002\",\"transaction\":\"|12645,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567378372\",\"franchise\":\"0002\",\"transaction\":\"|13162,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567378339\",\"franchise\":\"0002\",\"transaction\":\"|14317,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567368126\",\"demoted\":\"13863,\",\"franchise\":\"0007\",\"promoted\":\"13816,\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1567367143\",\"franchise\":\"0002\",\"deactivated\":\"12646,\",\"type\":\"IR\"},{\"timestamp\":\"1567328286\",\"franchise\":\"0005\",\"transaction\":\"|13065,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567328265\",\"franchise\":\"0005\",\"transaction\":\"|13910,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567328244\",\"franchise\":\"0005\",\"transaction\":\"|13647,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567310819\",\"demoted\":\"14120,14297,13776,\",\"franchise\":\"0014\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567310819\",\"franchise\":\"0014\",\"transaction\":\"|12845,13632,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1567310354\",\"franchise\":\"\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1567310354\",\"franchise\":\"0014\",\"transaction\":\"|10413,12731,10289,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1567309109\",\"franchise\":\"0014\",\"deactivated\":\"13316,\",\"type\":\"IR\"},{\"timestamp\":\"1567302751\",\"demoted\":\"13816,14108,\",\"franchise\":\"0007\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567302751\",\"franchise\":\"0007\",\"transaction\":\"|14017,14145,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"14108,13863,\",\"franchise2\":\"0014\",\"timestamp\":\"1567302069\",\"franchise1_gave_up\":\"BB_30,\",\"franchise\":\"0007\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1567904400\"},{\"activated\":\"12212,\",\"timestamp\":\"1567301147\",\"franchise\":\"0007\",\"deactivated\":\"12444,\",\"type\":\"IR\"},{\"timestamp\":\"1567299646\",\"demoted\":\"\",\"franchise\":\"\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567299646\",\"franchise\":\"0001\",\"transaction\":\"|14318,10742,13880,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567295944\",\"franchise\":\"0006\",\"transaction\":\"|10432,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567291969\",\"demoted\":\"13639,\",\"franchise\":\"0012\",\"promoted\":\"14057,\",\"type\":\"TAXI\"},{\"timestamp\":\"1567291432\",\"franchise\":\"0006\",\"transaction\":\"|12264,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567291347\",\"franchise\":\"0006\",\"transaction\":\"|13657,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567282790\",\"demoted\":\"14017,\",\"franchise\":\"0007\",\"promoted\":\"14315,\",\"type\":\"TAXI\"},{\"timestamp\":\"1567280723\",\"demoted\":\"14083,\",\"franchise\":\"0007\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567280723\",\"franchise\":\"0007\",\"transaction\":\"|13884,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567280172\",\"franchise\":\"0007\",\"transaction\":\"|12631,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1567278748\",\"franchise\":\"0007\",\"deactivated\":\"13190,\",\"type\":\"IR\"},{\"timestamp\":\"1567278736\",\"demoted\":\"13884,\",\"franchise\":\"0007\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567278715\",\"franchise\":\"0007\",\"transaction\":\"|14329,14077,13807,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567275322\",\"franchise\":\"0007\",\"transaction\":\"|11381,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567273069\",\"franchise\":\"0011\",\"transaction\":\"|9823,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567272577\",\"franchise\":\"0004\",\"transaction\":\"|12832,14331,14612,13144,13809,10500,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567272385\",\"franchise\":\"0003\",\"transaction\":\"|13644,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567272288\",\"franchise\":\"0003\",\"transaction\":\"|13641,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567272126\",\"franchise\":\"0011\",\"transaction\":\"|10412,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567271865\",\"franchise\":\"0011\",\"transaction\":\"|14029,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567271566\",\"franchise\":\"0005\",\"transaction\":\"|13638,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567230261\",\"franchise\":\"0011\",\"transaction\":\"|13912,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567230213\",\"franchise\":\"0011\",\"transaction\":\"|11689,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567230140\",\"demoted\":\"14097,13814,14080,\",\"franchise\":\"0011\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567221829\",\"demoted\":\"14087,\",\"franchise\":\"0012\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567221755\",\"franchise\":\"0012\",\"transaction\":\"|14084,11686,13167,14081,13377,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567219340\",\"franchise\":\"0012\",\"transaction\":\"|13882,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567176501\",\"franchise\":\"0006\",\"transaction\":\"|11697,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567168635\",\"demoted\":\"14109,\",\"franchise\":\"0013\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1567168635\",\"franchise\":\"0013\",\"transaction\":\"|13753,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1567051537\",\"demoted\":\"14126,\",\"franchise\":\"0010\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"14085,\",\"franchise2\":\"0010\",\"timestamp\":\"1567051502\",\"franchise1_gave_up\":\"FP_0013_2020_2,\",\"franchise\":\"0013\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1567605600\"},{\"activated\":\"\",\"timestamp\":\"1567001638\",\"franchise\":\"\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1567001638\",\"franchise\":\"0008\",\"transaction\":\"|11237,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566999398\",\"franchise\":\"0013\",\"transaction\":\"|11643,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566999351\",\"franchise\":\"0013\",\"transaction\":\"|11895,9817,9843,12792,12161,11337,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566999289\",\"demoted\":\"13616,\",\"franchise\":\"0013\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1566999289\",\"franchise\":\"0013\",\"transaction\":\"|13643,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"13316,\",\"franchise2\":\"0004\",\"timestamp\":\"1566999086\",\"franchise1_gave_up\":\"14280,14239,\",\"franchise\":\"0014\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1567310400\"},{\"timestamp\":\"1566976500\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1566975600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0004\",\"transaction\":\"11367,|0.00|14142,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0007\",\"transaction\":\"12934,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0007\",\"transaction\":\"12444,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0007\",\"transaction\":\"14017,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0007\",\"transaction\":\"13816,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0014\",\"transaction\":\"12731,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0014\",\"transaction\":\"14297,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0014\",\"transaction\":\"14108,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0014\",\"transaction\":\"12845,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0002\",\"transaction\":\"12646,|0.00|10696,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0005\",\"transaction\":\"13916,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"0004\",\"transaction\":\"14373,|22.00|12155,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566975600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1566955589\",\"franchise\":\"0006\",\"transaction\":\"|13384,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566955552\",\"franchise\":\"0006\",\"transaction\":\"|12824,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566955107\",\"franchise\":\"0006\",\"transaction\":\"|12367,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566954931\",\"demoted\":\"13623,14103,14122,\",\"franchise\":\"0006\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1566952856\",\"franchise\":\"0001\",\"deactivated\":\"13640,9912,\",\"type\":\"IR\"},{\"timestamp\":\"1566952856\",\"franchise\":\"0001\",\"transaction\":\"|12612,14194,14192,12917,12038,13893,12213,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566952535\",\"franchise\":\"0014\",\"transaction\":\"|13857,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566952528\",\"franchise\":\"0014\",\"transaction\":\"|14069,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566952517\",\"franchise\":\"0014\",\"transaction\":\"|13675,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566952495\",\"franchise\":\"0014\",\"transaction\":\"|9250,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1566929723\",\"franchise\":\"\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1566929723\",\"franchise\":\"0009\",\"transaction\":\"|12623,12617,12660,12465,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"12632,11890,\",\"timestamp\":\"1566926646\",\"franchise\":\"0003\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566925340\",\"franchise\":\"0012\",\"deactivated\":\"14106,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566877253\",\"franchise\":\"0010\",\"deactivated\":\"10695,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566824712\",\"franchise\":\"0005\",\"deactivated\":\"10708,13637,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566819055\",\"franchise\":\"\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1566819055\",\"franchise\":\"0008\",\"transaction\":\"|13235,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566818980\",\"demoted\":\"14191,\",\"franchise\":\"0008\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1566787326\",\"franchise\":\"0011\",\"deactivated\":\"14082,9831,\",\"type\":\"IR\"},{\"timestamp\":\"1566619004\",\"demoted\":\"14321,\",\"franchise\":\"0004\",\"promoted\":\"14142,\",\"type\":\"TAXI\"},{\"timestamp\":\"1566524153\",\"demoted\":\"14081,\",\"franchise\":\"0012\",\"promoted\":\"13882,\",\"type\":\"TAXI\"},{\"timestamp\":\"1566512093\",\"demoted\":\"14114,14265,\",\"franchise\":\"0002\",\"promoted\":\"13595,13663,\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1566512021\",\"franchise\":\"0002\",\"deactivated\":\"13121,11076,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566398895\",\"franchise\":\"0009\",\"deactivated\":\"11199,12465,\",\"type\":\"IR\"},{\"timestamp\":\"1566397976\",\"franchise\":\"0005\",\"transaction\":\"|11529,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566397925\",\"franchise\":\"0005\",\"transaction\":\"|10354,\",\"type\":\"FREE_AGENT\"},{\"activated\":\"\",\"timestamp\":\"1566397791\",\"franchise\":\"0003\",\"deactivated\":\"12632,11890,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566397651\",\"franchise\":\"0007\",\"deactivated\":\"13138,12212,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566397430\",\"franchise\":\"0007\",\"deactivated\":\"13807,\",\"type\":\"IR\"},{\"timestamp\":\"1566396984\",\"franchise\":\"0005\",\"transaction\":\"|12098,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566396590\",\"franchise\":\"0005\",\"transaction\":\"|10077,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566396568\",\"demoted\":\"14088,14142,\",\"franchise\":\"0004\",\"promoted\":\"13819,13850,\",\"type\":\"TAXI\"},{\"activated\":\"\",\"timestamp\":\"1566396385\",\"franchise\":\"0005\",\"deactivated\":\"13134,\",\"type\":\"IR\"},{\"activated\":\"\",\"timestamp\":\"1566396384\",\"franchise\":\"0004\",\"deactivated\":\"11668,13679,7422,\",\"type\":\"IR\"},{\"timestamp\":\"1566396136\",\"demoted\":\"14267,\",\"franchise\":\"0005\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"12386,\",\"franchise2\":\"0005\",\"timestamp\":\"1566394327\",\"franchise1_gave_up\":\"13412,13637,\",\"franchise\":\"0014\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1566698400\"},{\"timestamp\":\"1566393309\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1566393121\",\"franchise\":\"0007\",\"transaction\":\"13884,|\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566393089\",\"franchise\":\"0003\",\"transaction\":\"|12857,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566393019\",\"demoted\":\"14077,14315,14145,\",\"franchise\":\"0007\",\"promoted\":\"13807,\",\"type\":\"TAXI\"},{\"timestamp\":\"1566392951\",\"franchise\":\"0003\",\"transaction\":\"|13488,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566392069\",\"demoted\":\"14068,\",\"franchise\":\"0003\",\"promoted\":\"13644,\",\"type\":\"TAXI\"},{\"timestamp\":\"1566370800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0007\",\"transaction\":\"14145,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0007\",\"transaction\":\"14329,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0007\",\"transaction\":\"14315,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0004\",\"transaction\":\"14612,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0004\",\"transaction\":\"14331,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0004\",\"transaction\":\"12155,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0004\",\"transaction\":\"14142,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0004\",\"transaction\":\"13809,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0014\",\"transaction\":\"14069,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0010\",\"transaction\":\"12207,|0.00|13772,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0008\",\"transaction\":\"14191,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0007\",\"transaction\":\"14083,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0012\",\"transaction\":\"14081,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0012\",\"transaction\":\"14084,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0001\",\"transaction\":\"14192,|2.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0001\",\"transaction\":\"14194,|2.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0007\",\"transaction\":\"14077,|4.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0007\",\"transaction\":\"14098,|5.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0001\",\"transaction\":\"14318,|5.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0002\",\"transaction\":\"14265,|6.00|12646,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0002\",\"transaction\":\"14317,|6.00|11409,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0004\",\"transaction\":\"14294,|6.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0004\",\"transaction\":\"14321,|6.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0003\",\"transaction\":\"14240,|10.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0012\",\"transaction\":\"13148,|12.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0014\",\"transaction\":\"14239,|13.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0014\",\"transaction\":\"14280,|18.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0010\",\"transaction\":\"14131,|25.00|13666,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0010\",\"transaction\":\"14078,|25.00|12444,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0010\",\"transaction\":\"14314,|25.00|11367,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0002\",\"transaction\":\"14096,|41.00|11213,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"0003\",\"transaction\":\"14068,|50.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1566370800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1566361616\",\"franchise\":\"0004\",\"transaction\":\"|13391,13289,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566352280\",\"franchise\":\"0012\",\"transaction\":\"|13816,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566352258\",\"demoted\":\"14093,\",\"franchise\":\"0012\",\"promoted\":\"13816,\",\"type\":\"TAXI\"},{\"timestamp\":\"1566352242\",\"demoted\":\"\",\"franchise\":\"\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1566352242\",\"franchise\":\"0001\",\"transaction\":\"|9899,7813,12398,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566352041\",\"franchise\":\"0012\",\"transaction\":\"|13652,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566350271\",\"franchise\":\"0014\",\"transaction\":\"|13648,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566349563\",\"franchise\":\"0014\",\"transaction\":\"|13119,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566349507\",\"franchise\":\"0014\",\"transaction\":\"|12363,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566312448\",\"franchise\":\"0004\",\"transaction\":\"|13615,13387,12934,11647,12859,11642,11931,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566310167\",\"demoted\":\"14094,14146,\",\"franchise\":\"0003\",\"promoted\":\"13668,13680,\",\"type\":\"TAXI\"},{\"timestamp\":\"1566300957\",\"franchise\":\"0003\",\"transaction\":\"|13326,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566268667\",\"demoted\":\"14062,\",\"franchise\":\"0002\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1566268641\",\"franchise\":\"0002\",\"transaction\":\"|13725,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566256461\",\"franchise\":\"0003\",\"transaction\":\"|12402,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566256319\",\"franchise\":\"0012\",\"transaction\":\"|13114,12731,13197,11904,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566250433\",\"franchise\":\"0007\",\"transaction\":\"|11406,13849,13585,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566250100\",\"franchise\":\"0007\",\"transaction\":\"|12155,12627,12169,11688,13166,13505,12921,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566249340\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1566249332\",\"franchise\":\"0002\",\"transaction\":\"|11104,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566177978\",\"franchise\":\"0006\",\"transaction\":\"|13280,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"DP_3_5,\",\"franchise2\":\"0001\",\"timestamp\":\"1566075789\",\"franchise1_gave_up\":\"DP_3_13,FP_0004_2020_4,\",\"franchise\":\"0004\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1566604800\"},{\"timestamp\":\"1566073864\",\"franchise\":\"0004\",\"transaction\":\"|11977,12160,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566070969\",\"franchise\":\"0002\",\"transaction\":\"|12669,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566056080\",\"demoted\":\"\",\"franchise\":\"\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1566056080\",\"franchise\":\"0001\",\"transaction\":\"|12159,9898,9525,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566055989\",\"demoted\":\"14058,14125,\",\"franchise\":\"0001\",\"promoted\":\"13724,13645,\",\"type\":\"TAXI\"},{\"timestamp\":\"1566015873\",\"franchise\":\"0012\",\"transaction\":\"|11673,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1566003161\",\"franchise\":\"0002\",\"transaction\":\"|13609,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1565993645\",\"franchise\":\"0014\",\"transaction\":\"|12681,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1565964385\",\"franchise\":\"0006\",\"transaction\":\"|9073,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1565964374\",\"franchise\":\"0006\",\"transaction\":\"|13195,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1565922610\",\"demoted\":\"14057,\",\"franchise\":\"0012\",\"promoted\":\"13999,\",\"type\":\"TAXI\"},{\"timestamp\":\"1565922370\",\"franchise\":\"0012\",\"transaction\":\"|10297,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1565907407\",\"franchise\":\"0008\",\"transaction\":\"|10903,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"10708,\",\"franchise2\":\"0003\",\"timestamp\":\"1565897903\",\"franchise1_gave_up\":\"FP_0005_2020_1,\",\"franchise\":\"0005\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1566500400\"},{\"timestamp\":\"1565878303\",\"demoted\":\"\",\"franchise\":\"\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1565878303\",\"franchise\":\"0010\",\"transaction\":\"|12628,12655,7236,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1565878221\",\"demoted\":\"14085,13633,14136,\",\"franchise\":\"0010\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1565868020\",\"demoted\":\"13643,13753,14140,\",\"franchise\":\"0013\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"FP_0012_2020_3,\",\"franchise2\":\"0012\",\"timestamp\":\"1565215288\",\"franchise1_gave_up\":\"DP_2_9,\",\"franchise\":\"0007\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1565802000\"},{\"franchise2_gave_up\":\"10973,\",\"franchise2\":\"0010\",\"timestamp\":\"1564778409\",\"franchise1_gave_up\":\"DP_3_6,\",\"franchise\":\"0008\",\"type\":\"TRADE\",\"comments\":\"Here you go\",\"expires\":\"1565373600\"},{\"timestamp\":\"1564773464\",\"franchise\":\"0003\",\"transaction\":\"|10334,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1564557300\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1564556400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1564556400\",\"franchise\":\"0009\",\"transaction\":\"13427,|0.00|13628,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1564556400\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1561878900\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1561878000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1561878000\",\"franchise\":\"0010\",\"transaction\":\"13895,|0.00|13601,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1561878000\",\"franchise\":\"0007\",\"transaction\":\"13871,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1561878000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"franchise2_gave_up\":\"13622,13188,\",\"franchise2\":\"0007\",\"timestamp\":\"1560378576\",\"franchise1_gave_up\":\"11247,\",\"franchise\":\"0008\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1560870000\"},{\"franchise2_gave_up\":\"13648,\",\"franchise2\":\"0002\",\"timestamp\":\"1559526836\",\"franchise1_gave_up\":\"13121,\",\"franchise\":\"0014\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1559908800\"},{\"timestamp\":\"1559360868\",\"demoted\":\"13642,\",\"franchise\":\"0008\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1559286900\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1559286000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0004\",\"transaction\":\"11977,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0004\",\"transaction\":\"11647,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0002\",\"transaction\":\"11104,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0002\",\"transaction\":\"11213,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0012\",\"transaction\":\"10297,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0012\",\"transaction\":\"13652,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0012\",\"transaction\":\"12731,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0014\",\"transaction\":\"13121,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0014\",\"transaction\":\"13119,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0014\",\"transaction\":\"12681,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0001\",\"transaction\":\"12213,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0004\",\"transaction\":\"12832,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0004\",\"transaction\":\"12859,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0002\",\"transaction\":\"13648,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0001\",\"transaction\":\"13893,|2.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0001\",\"transaction\":\"12398,|2.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0012\",\"transaction\":\"13114,|3.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"0004\",\"transaction\":\"10500,|16.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1559286000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1559279316\",\"demoted\":\"13850,13819,13868,\",\"franchise\":\"0004\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1559278233\",\"demoted\":\"13849,13807,13585,\",\"franchise\":\"0007\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1559278095\",\"demoted\":\"13724,\",\"franchise\":\"0001\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1559278095\",\"franchise\":\"0001\",\"transaction\":\"|13871,10527,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1559276047\",\"demoted\":\"13595,13725,13663,\",\"franchise\":\"0002\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1559267205\",\"demoted\":\"13816,13999,13882,\",\"franchise\":\"0012\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1559265117\",\"demoted\":\"13632,13863,13857,\",\"franchise\":\"0014\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1559258357\",\"demoted\":\"13611,13619,13658,\",\"franchise\":\"0009\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"9899,\",\"franchise2\":\"0012\",\"timestamp\":\"1559248504\",\"franchise1_gave_up\":\"BB_30,\",\"franchise\":\"0001\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1559822400\"},{\"timestamp\":\"1558694773\",\"franchise\":\"0003\",\"transaction\":\"|11104,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1558694627\",\"demoted\":\"13644,\",\"franchise\":\"0003\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"13593,FP_0003_2020_1,\",\"franchise2\":\"0003\",\"timestamp\":\"1558692916\",\"franchise1_gave_up\":\"13590,\",\"franchise\":\"0008\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1559278800\"},{\"timestamp\":\"1558410342\",\"franchise\":\"0008\",\"transaction\":\"|13142,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1558410268\",\"franchise\":\"0008\",\"transaction\":\"|10300,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1558410250\",\"franchise\":\"0008\",\"transaction\":\"|10297,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1558410229\",\"franchise\":\"0008\",\"transaction\":\"|12178,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1558059165\",\"demoted\":\"13668,13680,\",\"franchise\":\"0003\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1558050972\",\"demoted\":\"13645,13793,\",\"franchise\":\"0001\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"franchise2_gave_up\":\"DP_1_13,\",\"franchise2\":\"0007\",\"timestamp\":\"1558050872\",\"franchise1_gave_up\":\"DP_2_6,DP_2_9,\",\"franchise\":\"0001\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558652400\"},{\"timestamp\":\"1558045586\",\"franchise\":\"0007\",\"transaction\":\"|13141,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1558043621\",\"demoted\":\"\",\"franchise\":\"\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1558043621\",\"franchise\":\"0013\",\"transaction\":\"|13890,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"11670,\",\"franchise2\":\"0007\",\"timestamp\":\"1558011316\",\"franchise1_gave_up\":\"10722,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558569600\"},{\"franchise2_gave_up\":\"DP_1_5,FP_0009_2020_3,\",\"franchise2\":\"0009\",\"timestamp\":\"1557982312\",\"franchise1_gave_up\":\"10276,FP_0001_2020_4,\",\"franchise\":\"0001\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558569600\"},{\"timestamp\":\"1557981870\",\"franchise\":\"0014\",\"transaction\":\"|13648,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1557981858\",\"franchise\":\"0014\",\"transaction\":\"|13893,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"DP_1_12,DP_2_2,\",\"franchise2\":\"0014\",\"timestamp\":\"1557963213\",\"franchise1_gave_up\":\"12785,DP_1_3,\",\"franchise\":\"0010\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558566000\"},{\"timestamp\":\"1557963123\",\"franchise\":\"0014\",\"transaction\":\"|14017,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1557958598\",\"franchise\":\"0007\",\"transaction\":\"|13173,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"DP_1_0,\",\"franchise2\":\"0003\",\"timestamp\":\"1557943276\",\"franchise1_gave_up\":\"DP_1_6,DP_2_8,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558483200\"},{\"timestamp\":\"1557929950\",\"franchise\":\"0007\",\"transaction\":\"|13830,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"14105,\",\"franchise2\":\"0013\",\"timestamp\":\"1557921073\",\"franchise1_gave_up\":\"14102,\",\"franchise\":\"0006\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558522800\"},{\"franchise2_gave_up\":\"14102,\",\"franchise2\":\"0012\",\"timestamp\":\"1557920100\",\"franchise1_gave_up\":\"10261,\",\"franchise\":\"0006\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558522800\"},{\"franchise2_gave_up\":\"DP_0_10,\",\"franchise2\":\"0006\",\"timestamp\":\"1557884886\",\"franchise1_gave_up\":\"11697,DP_0_11,DP_2_11,\",\"franchise\":\"0010\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1558486800\"},{\"franchise2_gave_up\":\"DP_1_6,\",\"franchise2\":\"0013\",\"timestamp\":\"1557881092\",\"franchise1_gave_up\":\"FP_0012_2020_2,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1557964800\"},{\"timestamp\":\"1557869443\",\"franchise\":\"0002\",\"transaction\":\"|11854,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"DP_3_10,\",\"franchise2\":\"0005\",\"timestamp\":\"1557323114\",\"franchise1_gave_up\":\"DP_3_11,\",\"franchise\":\"0006\",\"type\":\"TRADE\",\"comments\":\"Commish fixing import error\",\"expires\":\"1557925200\"},{\"franchise2_gave_up\":\"DP_1_10,\",\"franchise2\":\"0013\",\"timestamp\":\"1557323074\",\"franchise1_gave_up\":\"DP_1_11,\",\"franchise\":\"0006\",\"type\":\"TRADE\",\"comments\":\"Commish fixing import error\",\"expires\":\"1557925200\"},{\"franchise2_gave_up\":\"DP_0_10,DP_2_10,\",\"franchise2\":\"0010\",\"timestamp\":\"1557322996\",\"franchise1_gave_up\":\"DP_0_11,DP_2_11,\",\"franchise\":\"0006\",\"type\":\"TRADE\",\"comments\":\"Commish fixing pick import error\",\"expires\":\"1557925200\"},{\"franchise2_gave_up\":\"13138,\",\"franchise2\":\"0005\",\"timestamp\":\"1556818071\",\"franchise1_gave_up\":\"13154,\",\"franchise\":\"0007\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1557414000\"},{\"timestamp\":\"1556747367\",\"franchise\":\"0007\",\"transaction\":\"|11656,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1556608500\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1556607600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0007\",\"transaction\":\"13166,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0007\",\"transaction\":\"11406,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0007\",\"transaction\":\"12921,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0004\",\"transaction\":\"13387,|0.00|11213,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0004\",\"transaction\":\"7422,|0.00|13884,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0014\",\"transaction\":\"12363,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0014\",\"transaction\":\"13857,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0014\",\"transaction\":\"13863,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0014\",\"transaction\":\"10413,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0005\",\"transaction\":\"13179,|0.00|8670,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0007\",\"transaction\":\"11381,|2.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"0001\",\"transaction\":\"12038,|2.00|9118,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1556607600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1556582909\",\"franchise\":\"0014\",\"transaction\":\"|12731,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1556582689\",\"franchise\":\"0014\",\"transaction\":\"|13652,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1556582677\",\"franchise\":\"0014\",\"transaction\":\"|13170,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1556582620\",\"franchise\":\"0014\",\"transaction\":\"|12859,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"13364,13649,\",\"franchise2\":\"0009\",\"timestamp\":\"1556296941\",\"franchise1_gave_up\":\"FP_0008_2020_1,FP_0008_2020_2,\",\"franchise\":\"0008\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1556899200\"},{\"franchise2_gave_up\":\"DP_2_4,FP_0012_2020_1,\",\"franchise2\":\"0012\",\"timestamp\":\"1556278617\",\"franchise1_gave_up\":\"DP_0_3,\",\"franchise\":\"0010\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1556859600\"},{\"franchise2_gave_up\":\"13601,DP_2_10,\",\"franchise2\":\"0002\",\"timestamp\":\"1555610520\",\"franchise1_gave_up\":\"10697,DP_3_3,\",\"franchise\":\"0010\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1556139600\"},{\"franchise2_gave_up\":\"DP_2_8,\",\"franchise2\":\"0007\",\"timestamp\":\"1555106357\",\"franchise1_gave_up\":\"12212,\",\"franchise\":\"0012\",\"type\":\"TRADE\",\"comments\":\"I wanted 1.3 but am glad we could find a middle ground. \",\"expires\":\"1555113600\"},{\"timestamp\":\"1554016500\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1554015600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0007\",\"transaction\":\"13830,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0007\",\"transaction\":\"13585,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0001\",\"transaction\":\"10742,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0001\",\"transaction\":\"13238,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0001\",\"transaction\":\"12612,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0002\",\"transaction\":\"13609,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0006\",\"transaction\":\"12824,|0.00|13169,\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0008\",\"transaction\":\"11237,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0008\",\"transaction\":\"10297,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0008\",\"transaction\":\"12178,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0007\",\"transaction\":\"13505,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0001\",\"transaction\":\"9525,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0002\",\"transaction\":\"11409,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0007\",\"transaction\":\"13849,|2.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0001\",\"transaction\":\"12263,|7.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"0009\",\"transaction\":\"6997,|24.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1554015600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1553909767\",\"franchise\":\"0009\",\"transaction\":\"|10413,10674,\",\"type\":\"FREE_AGENT\"},{\"timestamp\":\"1553809566\",\"franchise\":\"0007\",\"transaction\":\"|13121,\",\"type\":\"FREE_AGENT\"},{\"franchise2_gave_up\":\"13635,DP_0_10,FP_0009_2020_1,\",\"franchise2\":\"0009\",\"timestamp\":\"1552499157\",\"franchise1_gave_up\":\"12652,\",\"franchise\":\"0010\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1553101200\"},{\"timestamp\":\"1551341700\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"},{\"timestamp\":\"1551340800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0004\",\"transaction\":\"11931,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0009\",\"transaction\":\"12660,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0002\",\"transaction\":\"10696,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0002\",\"transaction\":\"12669,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0002\",\"transaction\":\"11854,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0014\",\"transaction\":\"13170,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0014\",\"transaction\":\"10289,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0014\",\"transaction\":\"12859,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0006\",\"transaction\":\"13169,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0006\",\"transaction\":\"12319,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0014\",\"transaction\":\"12731,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0014\",\"transaction\":\"13648,|0.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0004\",\"transaction\":\"12160,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0012\",\"transaction\":\"9899,|2.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0009\",\"transaction\":\"13628,|3.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0009\",\"transaction\":\"13658,|3.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0012\",\"transaction\":\"10409,|6.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0011\",\"transaction\":\"14029,|6.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"0002\",\"transaction\":\"11175,|7.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1551340800\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"franchise2_gave_up\":\"13634,11938,DP_1_13,DP_2_8,\",\"franchise2\":\"0014\",\"timestamp\":\"1551160855\",\"franchise1_gave_up\":\"13131,13176,DP_2_2,\",\"franchise\":\"0007\",\"type\":\"TRADE\",\"comments\":\"\",\"expires\":\"1551762000\"},{\"timestamp\":\"1550783949\",\"demoted\":\"\",\"franchise\":\"0001\",\"promoted\":\"13871,13640,13724,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783935\",\"demoted\":\"\",\"franchise\":\"0002\",\"promoted\":\"13595,13663,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783924\",\"demoted\":\"\",\"franchise\":\"0003\",\"promoted\":\"13668,13644,13680,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783915\",\"demoted\":\"\",\"franchise\":\"0004\",\"promoted\":\"13868,13615,13884,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783908\",\"demoted\":\"\",\"franchise\":\"0005\",\"promoted\":\"13638,13910,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783898\",\"demoted\":\"\",\"franchise\":\"0006\",\"promoted\":\"13726,13605,13657,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783890\",\"demoted\":\"\",\"franchise\":\"0007\",\"promoted\":\"13807,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783874\",\"demoted\":\"\",\"franchise\":\"0009\",\"promoted\":\"13619,13664,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783866\",\"demoted\":\"\",\"franchise\":\"0010\",\"promoted\":\"13666,13633,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783859\",\"demoted\":\"\",\"franchise\":\"0011\",\"promoted\":\"13814,13912,13963,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783799\",\"demoted\":\"\",\"franchise\":\"0012\",\"promoted\":\"13621,13999,13882,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783790\",\"demoted\":\"\",\"franchise\":\"0013\",\"promoted\":\"13636,13643,13763,\",\"type\":\"TAXI\"},{\"timestamp\":\"1550783780\",\"demoted\":\"\",\"franchise\":\"0014\",\"promoted\":\"13637,13776,13674,\",\"type\":\"TAXI\"},{\"activated\":\"12665,11250,\",\"timestamp\":\"1550783723\",\"franchise\":\"0014\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"9843,13254,\",\"timestamp\":\"1550783714\",\"franchise\":\"0013\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"13246,12212,\",\"timestamp\":\"1550783703\",\"franchise\":\"0012\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"11654,11761,\",\"timestamp\":\"1550783693\",\"franchise\":\"0011\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"11672,13673,\",\"timestamp\":\"1550783685\",\"franchise\":\"0010\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"13164,8416,\",\"timestamp\":\"1550783675\",\"franchise\":\"0009\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"11758,\",\"timestamp\":\"1550783667\",\"franchise\":\"0008\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"12627,13188,\",\"timestamp\":\"1550783660\",\"franchise\":\"0007\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"12676,12208,\",\"timestamp\":\"1550783652\",\"franchise\":\"0006\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"8670,11681,\",\"timestamp\":\"1550783645\",\"franchise\":\"0005\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"11760,13289,\",\"timestamp\":\"1550783637\",\"franchise\":\"0004\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"11890,11516,\",\"timestamp\":\"1550783628\",\"franchise\":\"0003\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"13725,13162,\",\"timestamp\":\"1550783620\",\"franchise\":\"0002\",\"deactivated\":\"\",\"type\":\"IR\"},{\"activated\":\"7813,10738,\",\"timestamp\":\"1550783612\",\"franchise\":\"0001\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1549407600\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"LOCK_ALL_PLAYERS\"}]},\"encoding\":\"utf-8\"}"), 
-    date = structure(1595813463, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0.231601, namelookup = 0.000704, 
-    connect = 0.057101, pretransfer = 0.184079, starttransfer = 0.671901, 
-    total = 0.698908)), class = "response")
+    date = structure(1595849642, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.232186, namelookup = 0.003193, 
+    connect = 0.058352, pretransfer = 0.190849, starttransfer = 0.666542, 
+    total = 0.669073)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-f5d34a.R b/tests/testthat/api.myfantasyleague.com/2019/export-f5d34a.R
new file mode 100644
index 00000000..2306c8a6
--- /dev/null
+++ b/tests/testthat/api.myfantasyleague.com/2019/export-f5d34a.R
@@ -0,0 +1,25 @@
+structure(list(url = "https://www61.myfantasyleague.com/2019/export?TYPE=players&L=54040&DETAILS=1&JSON=1", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:34:04 GMT", 
+        server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+        vary = "Accept-Encoding", `content-encoding` = "gzip", 
+        `content-type` = "application/json; charset=utf-8", `transfer-encoding` = "chunked"), class = c("insensitive", 
+    "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:04 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            location = "https://www61.myfantasyleague.com/2019/export?TYPE=players&L=54040&DETAILS=1&JSON=1", 
+            `content-length` = "0", targethost = "www70"), class = c("insensitive", 
+        "list"))), list(status = 200L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:04 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            vary = "Accept-Encoding", `content-encoding` = "gzip", 
+            `content-type` = "application/json; charset=utf-8", 
+            `transfer-encoding` = "chunked"), class = c("insensitive", 
+        "list")))), cookies = structure(list(domain = logical(0), 
+        flag = logical(0), path = logical(0), secure = logical(0), 
+        expiration = structure(numeric(0), class = c("POSIXct", 
+        "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
+    content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"-1\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"stats_id\":\"2\",\"draft_team\":\"BUF\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0501\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"fleaflicker_id\":\"2331\",\"cbs_id\":\"409\"},{\"draft_year\":\"1970\",\"stats_id\":\"11\",\"draft_team\":\"IND\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0502\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"fleaflicker_id\":\"2341\",\"cbs_id\":\"402\"},{\"draft_year\":\"1970\",\"stats_id\":\"15\",\"draft_team\":\"MIA\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0503\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"fleaflicker_id\":\"2344\",\"cbs_id\":\"404\"},{\"draft_year\":\"1970\",\"stats_id\":\"17\",\"draft_team\":\"NEP\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0504\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"fleaflicker_id\":\"2346\",\"cbs_id\":\"406\"},{\"draft_year\":\"1970\",\"stats_id\":\"20\",\"draft_team\":\"NYJ\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0505\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"fleaflicker_id\":\"2349\",\"cbs_id\":\"410\"},{\"draft_year\":\"1970\",\"stats_id\":\"4\",\"draft_team\":\"CIN\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0506\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"fleaflicker_id\":\"2334\",\"cbs_id\":\"426\"},{\"draft_year\":\"1970\",\"stats_id\":\"5\",\"draft_team\":\"CLE\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0507\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"fleaflicker_id\":\"2335\",\"cbs_id\":\"419\"},{\"draft_year\":\"1970\",\"stats_id\":\"10\",\"draft_team\":\"TEN\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0508\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"fleaflicker_id\":\"2358\",\"cbs_id\":\"431\"},{\"draft_year\":\"1970\",\"stats_id\":\"30\",\"draft_team\":\"JAC\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0509\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"fleaflicker_id\":\"2342\",\"cbs_id\":\"422\"},{\"draft_year\":\"1970\",\"stats_id\":\"23\",\"draft_team\":\"PIT\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0510\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"fleaflicker_id\":\"2352\",\"cbs_id\":\"413\"},{\"draft_year\":\"1970\",\"stats_id\":\"7\",\"draft_team\":\"DEN\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0511\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"fleaflicker_id\":\"2337\",\"cbs_id\":\"428\"},{\"draft_year\":\"1970\",\"stats_id\":\"12\",\"draft_team\":\"KCC\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0512\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"fleaflicker_id\":\"2343\",\"cbs_id\":\"403\"},{\"draft_year\":\"1970\",\"stats_id\":\"13\",\"draft_team\":\"OAK\",\"position\":\"Def\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0513\",\"twitter_username\":\"raiders\",\"team\":\"OAK\",\"fleaflicker_id\":\"2350\",\"cbs_id\":\"424\"},{\"draft_year\":\"1970\",\"stats_id\":\"24\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0514\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"stats_id\":\"26\",\"draft_team\":\"SEA\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0515\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"fleaflicker_id\":\"2354\",\"cbs_id\":\"416\"},{\"draft_year\":\"1970\",\"stats_id\":\"6\",\"draft_team\":\"DAL\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0516\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"fleaflicker_id\":\"2336\",\"cbs_id\":\"427\"},{\"draft_year\":\"1970\",\"stats_id\":\"19\",\"draft_team\":\"NYG\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0517\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"fleaflicker_id\":\"2348\",\"cbs_id\":\"408\"},{\"draft_year\":\"1970\",\"stats_id\":\"21\",\"draft_team\":\"PHI\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0518\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"fleaflicker_id\":\"2351\",\"cbs_id\":\"411\"},{\"draft_year\":\"1970\",\"stats_id\":\"22\",\"draft_team\":\"ARI\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0519\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"fleaflicker_id\":\"2328\",\"cbs_id\":\"412\"},{\"draft_year\":\"1970\",\"stats_id\":\"28\",\"draft_team\":\"WAS\",\"position\":\"Def\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0520\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"fleaflicker_id\":\"2359\",\"cbs_id\":\"418\"},{\"draft_year\":\"1970\",\"stats_id\":\"3\",\"draft_team\":\"CHI\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0521\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"fleaflicker_id\":\"2333\",\"cbs_id\":\"421\"},{\"draft_year\":\"1970\",\"stats_id\":\"8\",\"draft_team\":\"DET\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0522\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"fleaflicker_id\":\"2338\",\"cbs_id\":\"429\"},{\"draft_year\":\"1970\",\"stats_id\":\"9\",\"draft_team\":\"GBP\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0523\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"fleaflicker_id\":\"2339\",\"cbs_id\":\"430\"},{\"draft_year\":\"1970\",\"stats_id\":\"16\",\"draft_team\":\"MIN\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0524\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"fleaflicker_id\":\"2345\",\"cbs_id\":\"405\"},{\"draft_year\":\"1970\",\"stats_id\":\"27\",\"draft_team\":\"TBB\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0525\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"fleaflicker_id\":\"2357\",\"cbs_id\":\"417\"},{\"draft_year\":\"1970\",\"stats_id\":\"1\",\"draft_team\":\"ATL\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0526\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"fleaflicker_id\":\"2329\",\"cbs_id\":\"401\"},{\"draft_year\":\"1970\",\"stats_id\":\"29\",\"draft_team\":\"CAR\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0527\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"fleaflicker_id\":\"2332\",\"cbs_id\":\"420\"},{\"draft_year\":\"1970\",\"stats_id\":\"14\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0528\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"stats_id\":\"18\",\"draft_team\":\"NOS\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0529\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"fleaflicker_id\":\"2347\",\"cbs_id\":\"407\"},{\"draft_year\":\"1970\",\"stats_id\":\"25\",\"draft_team\":\"SFO\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0530\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"stats_id\":\"33\",\"draft_team\":\"BAL\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0531\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"fleaflicker_id\":\"2330\",\"cbs_id\":\"425\"},{\"draft_year\":\"1970\",\"stats_id\":\"34\",\"draft_team\":\"HOU\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0532\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"fleaflicker_id\":\"2340\",\"cbs_id\":\"432\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"OAK\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"OAK\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Oakland\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"OAK\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"position\":\"XX\",\"name\":\"2018 Pick, 39\",\"id\":\"0838\",\"team\":\"FA\"},{\"draft_year\":\"1989\",\"stats_id\":\"22733\",\"draft_team\":\"NOS\",\"position\":\"Coach\",\"name\":\"Garrett, Jason\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"rotowire_id\":\"169\",\"jersey\":\"17\",\"weight\":\"195\",\"id\":\"1238\",\"team\":\"FA\"},{\"draft_year\":\"1994\",\"stats_id\":\"39685\",\"draft_team\":\"NYJ\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"twitter_username\":\"PeteCarroll\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"draft_team\":\"FA\",\"birthdate\":\"94366800\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"height\":\"72\",\"rotowire_id\":\"395\",\"jersey\":\"4\",\"twitter_username\":\"aVinatieri4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"team\":\"IND\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"OAK\"},{\"draft_year\":\"1998\",\"nfl_id\":\"phildawson/2500351\",\"rotoworld_id\":\"2631\",\"stats_id\":\"4269\",\"position\":\"PK\",\"stats_global_id\":\"24388\",\"espn_id\":\"1440\",\"weight\":\"200\",\"id\":\"3494\",\"birthdate\":\"159685200\",\"draft_team\":\"FA\",\"name\":\"Dawson, Phil\",\"college\":\"Texas\",\"rotowire_id\":\"994\",\"height\":\"71\",\"jersey\":\"4\",\"twitter_username\":\"phil_dawson_4\",\"sportsdata_id\":\"e5247e5f-c4af-4a9b-8c7c-da75ef7fbf8d\",\"team\":\"FA\",\"cbs_id\":\"12320\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"PIT\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"1\",\"nfl_id\":\"sebastianjanikowski/2504257\",\"rotoworld_id\":\"819\",\"stats_id\":\"5046\",\"position\":\"PK\",\"stats_global_id\":\"25165\",\"espn_id\":\"2148\",\"weight\":\"260\",\"id\":\"5666\",\"birthdate\":\"257662800\",\"draft_team\":\"OAK\",\"name\":\"Janikowski, Sebastian\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"1299\",\"jersey\":\"11\",\"sportsdata_id\":\"480277d1-47c9-44df-969e-038a84cd0fea\",\"team\":\"FA\",\"cbs_id\":\"187389\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"NEP\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"1\",\"nfl_id\":\"juliuspeppers/2505010\",\"rotoworld_id\":\"2361\",\"stats_id\":\"5888\",\"position\":\"DE\",\"stats_global_id\":\"80980\",\"espn_id\":\"3530\",\"weight\":\"295\",\"id\":\"6510\",\"birthdate\":\"317019600\",\"draft_team\":\"CAR\",\"name\":\"Peppers, Julius\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"height\":\"79\",\"rotowire_id\":\"2528\",\"jersey\":\"90\",\"sportsdata_id\":\"c058f888-ff75-4f13-a9e7-3f5be65288bf\",\"team\":\"FA\",\"cbs_id\":\"302214\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"PHI\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"WAS\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"KCC\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"DAL\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2003\",\"nfl_id\":\"antoniogates/2505299\",\"rotoworld_id\":\"611\",\"stats_id\":\"6663\",\"position\":\"TE\",\"stats_global_id\":\"234249\",\"espn_id\":\"5362\",\"weight\":\"255\",\"id\":\"7236\",\"birthdate\":\"330152400\",\"draft_team\":\"FA\",\"name\":\"Gates, Antonio\",\"college\":\"Kent State\",\"rotowire_id\":\"3172\",\"height\":\"76\",\"jersey\":\"85\",\"twitter_username\":\"AntonioGates85\",\"sportsdata_id\":\"82da09c2-e542-4f7d-87d9-24dfd8e014de\",\"team\":\"FA\",\"cbs_id\":\"396811\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"NYG\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"LAC\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"2\",\"nfl_id\":\"karlosdansby/2506112\",\"rotoworld_id\":\"2663\",\"stats_id\":\"6792\",\"position\":\"LB\",\"stats_global_id\":\"246083\",\"espn_id\":\"5558\",\"weight\":\"250\",\"id\":\"7423\",\"fleaflicker_id\":\"1994\",\"birthdate\":\"373611600\",\"draft_team\":\"ARI\",\"name\":\"Dansby, Karlos\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"3898\",\"jersey\":\"56\",\"twitter_username\":\"MrDansby58\",\"sportsdata_id\":\"4b1c6f89-1bcc-4487-b2ff-0d86b3943618\",\"team\":\"FA\",\"cbs_id\":\"492918\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"draft_round\":\"7\",\"nfl_id\":\"donniejones/2505889\",\"rotoworld_id\":\"2915\",\"stats_id\":\"6983\",\"position\":\"PN\",\"stats_global_id\":\"246431\",\"espn_id\":\"5749\",\"weight\":\"221\",\"id\":\"7614\",\"birthdate\":\"331621200\",\"draft_team\":\"SEA\",\"name\":\"Jones, Donnie\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"4066\",\"jersey\":\"5\",\"sportsdata_id\":\"ce74af98-fcfc-446d-83fe-e875d2e8dbd9\",\"team\":\"FA\",\"cbs_id\":\"492972\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"HOU\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"adamjones/2506345\",\"rotoworld_id\":\"3127\",\"stats_id\":\"7182\",\"position\":\"CB\",\"stats_global_id\":\"179874\",\"espn_id\":\"8421\",\"weight\":\"185\",\"id\":\"7818\",\"birthdate\":\"433746000\",\"draft_team\":\"TEN\",\"name\":\"Jones, Adam\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"height\":\"70\",\"rotowire_id\":\"4457\",\"jersey\":\"24\",\"twitter_username\":\"REALPACMAN24\",\"sportsdata_id\":\"69d9c13c-2293-4eed-ae35-01c90dd45c1b\",\"team\":\"FA\",\"cbs_id\":\"552555\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"LAC\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"derrickjohnson/2506353\",\"rotoworld_id\":\"3172\",\"stats_id\":\"7191\",\"position\":\"LB\",\"stats_global_id\":\"161681\",\"espn_id\":\"8430\",\"weight\":\"245\",\"id\":\"7827\",\"birthdate\":\"406789200\",\"draft_team\":\"KCC\",\"name\":\"Johnson, Derrick\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"4486\",\"jersey\":\"56\",\"twitter_username\":\"superdj56\",\"sportsdata_id\":\"e3896096-bafa-4c02-bd35-372c4002b3d7\",\"team\":\"FA\",\"cbs_id\":\"552552\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"20\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"BUF\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"2\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"KCC\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"PHI\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"6\",\"nfl_id\":\"derekanderson/2506546\",\"rotoworld_id\":\"3233\",\"stats_id\":\"7389\",\"position\":\"QB\",\"stats_global_id\":\"159904\",\"espn_id\":\"8627\",\"weight\":\"235\",\"id\":\"8025\",\"birthdate\":\"424501200\",\"draft_team\":\"BAL\",\"name\":\"Anderson, Derek\",\"draft_pick\":\"39\",\"college\":\"Oregon State\",\"height\":\"78\",\"rotowire_id\":\"4313\",\"jersey\":\"3\",\"twitter_username\":\"DAnderson314\",\"sportsdata_id\":\"72fbe462-91c5-4c84-9640-e8ad7cad6447\",\"team\":\"FA\",\"cbs_id\":\"405598\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"mattcassel/2506562\",\"rotoworld_id\":\"3237\",\"stats_id\":\"7406\",\"position\":\"QB\",\"stats_global_id\":\"145407\",\"espn_id\":\"8644\",\"weight\":\"225\",\"id\":\"8042\",\"birthdate\":\"390459600\",\"draft_team\":\"NEP\",\"name\":\"Cassel, Matt\",\"draft_pick\":\"16\",\"college\":\"Southern California\",\"height\":\"76\",\"rotowire_id\":\"4574\",\"jersey\":\"8\",\"sportsdata_id\":\"8263e101-aa33-435f-bf0f-388e1c4eeb59\",\"team\":\"FA\",\"cbs_id\":\"552470\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"0\",\"nfl_id\":\"nicknovak/2506194\",\"rotoworld_id\":\"3504\",\"stats_id\":\"7505\",\"position\":\"PK\",\"stats_global_id\":\"151828\",\"espn_id\":\"9329\",\"weight\":\"200\",\"id\":\"8144\",\"birthdate\":\"367218000\",\"draft_team\":\"FA\",\"name\":\"Novak, Nick\",\"college\":\"Maryland\",\"rotowire_id\":\"4661\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"9nicknovak\",\"sportsdata_id\":\"47cfc2a1-2b81-430e-8b30-ff5129e5c601\",\"team\":\"FA\",\"cbs_id\":\"417825\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"WAS\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"jaycutler/2495824\",\"rotoworld_id\":\"3608\",\"stats_id\":\"7760\",\"position\":\"QB\",\"stats_global_id\":\"158918\",\"espn_id\":\"9597\",\"weight\":\"231\",\"id\":\"8252\",\"birthdate\":\"420440400\",\"draft_team\":\"DEN\",\"name\":\"Cutler, Jay\",\"draft_pick\":\"11\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"4783\",\"jersey\":\"6\",\"twitter_username\":\"JayCutler6\",\"sportsdata_id\":\"ecd3bc0f-04dd-4945-9454-3fc4722fa5a8\",\"team\":\"FA\",\"cbs_id\":\"409102\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"halotingata/2506879\",\"rotoworld_id\":\"3599\",\"stats_id\":\"7761\",\"position\":\"DT\",\"stats_global_id\":\"213981\",\"espn_id\":\"9598\",\"weight\":\"340\",\"id\":\"8253\",\"birthdate\":\"443509200\",\"draft_team\":\"BAL\",\"name\":\"Ngata, Haloti\",\"draft_pick\":\"12\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"4743\",\"jersey\":\"94\",\"twitter_username\":\"Haloti_Ngata92\",\"sportsdata_id\":\"6de52f0c-2a65-42a3-81a0-9c772a588c08\",\"team\":\"FA\",\"cbs_id\":\"417708\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"24\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"HOU\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"3\",\"nfl_id\":\"frosteerucker/2506908\",\"rotoworld_id\":\"3725\",\"stats_id\":\"7840\",\"position\":\"DE\",\"stats_global_id\":\"157135\",\"espn_id\":\"9677\",\"weight\":\"261\",\"id\":\"8332\",\"fleaflicker_id\":\"4217\",\"birthdate\":\"432363600\",\"draft_team\":\"CIN\",\"name\":\"Rucker, Frostee\",\"draft_pick\":\"27\",\"college\":\"Southern California\",\"height\":\"75\",\"rotowire_id\":\"5030\",\"jersey\":\"98\",\"sportsdata_id\":\"36648f14-5fe5-40f3-ade1-ef53c8f93bdf\",\"team\":\"FA\",\"cbs_id\":\"419996\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"NEP\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"brandonmarshall/2495893\",\"rotoworld_id\":\"3653\",\"stats_id\":\"7868\",\"position\":\"WR\",\"stats_global_id\":\"179701\",\"espn_id\":\"9705\",\"weight\":\"232\",\"id\":\"8360\",\"birthdate\":\"448866000\",\"draft_team\":\"DEN\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"4879\",\"jersey\":\"15\",\"twitter_username\":\"BMarshall\",\"sportsdata_id\":\"bbca096b-fd15-498a-86c2-feb44737363f\",\"team\":\"FA\",\"cbs_id\":\"426135\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"BAL\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"5\",\"nfl_id\":\"kylewilliams/2506931\",\"rotoworld_id\":\"3947\",\"stats_id\":\"7883\",\"position\":\"DT\",\"stats_global_id\":\"216860\",\"espn_id\":\"9720\",\"weight\":\"303\",\"id\":\"8375\",\"birthdate\":\"448520400\",\"draft_team\":\"BUF\",\"name\":\"Williams, Kyle\",\"draft_pick\":\"1\",\"college\":\"Louisiana State\",\"height\":\"73\",\"rotowire_id\":\"5152\",\"jersey\":\"95\",\"twitter_username\":\"KyleWilliams_10\",\"sportsdata_id\":\"57c5c69c-844e-41f1-9985-6fc178cee514\",\"team\":\"FA\",\"cbs_id\":\"423832\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"TEN\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"NYG\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"twitter_username\":\"CoachTomlin\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"calvinjohnson/2495647\",\"rotoworld_id\":\"4153\",\"stats_id\":\"8256\",\"position\":\"WR\",\"stats_global_id\":\"266919\",\"espn_id\":\"10447\",\"weight\":\"237\",\"id\":\"8657\",\"birthdate\":\"496818000\",\"draft_team\":\"DET\",\"name\":\"Johnson, Calvin\",\"draft_pick\":\"2\",\"college\":\"Georgia Tech\",\"height\":\"77\",\"rotowire_id\":\"5189\",\"jersey\":\"81\",\"sportsdata_id\":\"2c56748d-6e13-495c-bec2-de67a8683fa0\",\"team\":\"FA\",\"cbs_id\":\"502629\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"26\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"WAS\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"reggienelson/2507167\",\"rotoworld_id\":\"4164\",\"stats_id\":\"8275\",\"position\":\"S\",\"stats_global_id\":\"296140\",\"espn_id\":\"10465\",\"weight\":\"210\",\"id\":\"8668\",\"fleaflicker_id\":\"4799\",\"birthdate\":\"432968400\",\"draft_team\":\"JAC\",\"name\":\"Nelson, Reggie\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5368\",\"jersey\":\"27\",\"sportsdata_id\":\"9029830c-1394-494f-a92c-e192697913cf\",\"team\":\"FA\",\"cbs_id\":\"564167\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"SEA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"NOS\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"leonhall/2495617\",\"rotoworld_id\":\"4204\",\"stats_id\":\"8272\",\"position\":\"CB\",\"stats_global_id\":\"216026\",\"espn_id\":\"10462\",\"weight\":\"195\",\"id\":\"8674\",\"fleaflicker_id\":\"4762\",\"birthdate\":\"471416400\",\"draft_team\":\"CIN\",\"name\":\"Hall, Leon\",\"draft_pick\":\"18\",\"college\":\"Michigan\",\"height\":\"71\",\"rotowire_id\":\"5348\",\"jersey\":\"29\",\"sportsdata_id\":\"16340de5-372b-4c20-953f-07a0fe26be69\",\"team\":\"FA\",\"cbs_id\":\"412010\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"CAR\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"CLE\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"LAR\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"fleaflicker_id\":\"4848\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"LAC\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"4\",\"nfl_id\":\"zakdeossie/2507200\",\"rotoworld_id\":\"4253\",\"stats_id\":\"8370\",\"position\":\"LB\",\"stats_global_id\":\"232667\",\"espn_id\":\"10560\",\"weight\":\"248\",\"id\":\"8799\",\"birthdate\":\"454222800\",\"draft_team\":\"NYG\",\"name\":\"DeOssie, Zak\",\"draft_pick\":\"17\",\"college\":\"Brown\",\"height\":\"76\",\"rotowire_id\":\"5347\",\"jersey\":\"51\",\"sportsdata_id\":\"c38a3fbc-f9af-4676-b905-4f101a99194d\",\"team\":\"NYG\",\"cbs_id\":\"1208949\"},{\"draft_year\":\"2007\",\"draft_round\":\"5\",\"nfl_id\":\"coreygraham/2495613\",\"rotoworld_id\":\"4318\",\"stats_id\":\"8422\",\"position\":\"S\",\"stats_global_id\":\"228604\",\"espn_id\":\"10611\",\"weight\":\"196\",\"id\":\"8843\",\"fleaflicker_id\":\"4720\",\"birthdate\":\"491115600\",\"draft_team\":\"CHI\",\"name\":\"Graham, Corey\",\"draft_pick\":\"31\",\"college\":\"New Hampshire\",\"height\":\"72\",\"rotowire_id\":\"5874\",\"jersey\":\"24\",\"sportsdata_id\":\"93ee67e5-08d1-4272-bc6b-d97feaab5d6b\",\"team\":\"FA\",\"cbs_id\":\"1221208\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"2\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"NEP\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2007\",\"draft_round\":\"7\",\"nfl_id\":\"clarkharris/2495620\",\"rotoworld_id\":\"4288\",\"stats_id\":\"8497\",\"position\":\"TE\",\"stats_global_id\":\"216309\",\"espn_id\":\"10686\",\"weight\":\"250\",\"id\":\"8910\",\"fleaflicker_id\":\"4770\",\"birthdate\":\"458283600\",\"draft_team\":\"GBP\",\"name\":\"Harris, Clark\",\"draft_pick\":\"33\",\"college\":\"Rutgers\",\"height\":\"77\",\"rotowire_id\":\"5308\",\"jersey\":\"46\",\"twitter_username\":\"ClarkHarris46\",\"sportsdata_id\":\"d7eec5c7-c401-485e-b0c8-fb0784c07b27\",\"team\":\"CIN\",\"cbs_id\":\"412346\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"KCC\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"S\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"GBP\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"martellusbennett/1062\",\"rotoworld_id\":\"4639\",\"stats_id\":\"8838\",\"position\":\"TE\",\"stats_global_id\":\"302238\",\"espn_id\":\"11295\",\"weight\":\"275\",\"id\":\"9044\",\"birthdate\":\"542350800\",\"draft_team\":\"DAL\",\"name\":\"Bennett, Martellus\",\"draft_pick\":\"30\",\"college\":\"Texas A&M\",\"height\":\"78\",\"rotowire_id\":\"5709\",\"jersey\":\"88\",\"twitter_username\":\"MartysaurusRex\",\"sportsdata_id\":\"0ca741f8-58bd-4933-9d5c-0e04de3f4cff\",\"team\":\"FA\",\"cbs_id\":\"564954\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"JAC\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"3\",\"nfl_id\":\"jamaalcharles/925\",\"rotoworld_id\":\"4617\",\"stats_id\":\"8850\",\"position\":\"RB\",\"stats_global_id\":\"300346\",\"espn_id\":\"11307\",\"weight\":\"199\",\"id\":\"9054\",\"birthdate\":\"536043600\",\"draft_team\":\"KCC\",\"name\":\"Charles, Jamaal\",\"draft_pick\":\"10\",\"college\":\"Texas\",\"height\":\"71\",\"rotowire_id\":\"5663\",\"jersey\":\"31\",\"twitter_username\":\"jcharles25\",\"sportsdata_id\":\"aca06a5e-0e3a-4285-a025-199f8fa0376f\",\"team\":\"FA\",\"cbs_id\":\"564952\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"DEN\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"chrislong/276\",\"rotoworld_id\":\"4707\",\"stats_id\":\"8779\",\"position\":\"DE\",\"stats_global_id\":\"267902\",\"espn_id\":\"11236\",\"weight\":\"270\",\"id\":\"9084\",\"birthdate\":\"480834000\",\"draft_team\":\"FA\",\"name\":\"Long, Chris\",\"draft_pick\":\"2\",\"college\":\"Virginia\",\"height\":\"75\",\"rotowire_id\":\"5608\",\"jersey\":\"56\",\"twitter_username\":\"JOEL9ONE\",\"sportsdata_id\":\"2c9cbc74-9a26-4ccf-9552-c9fa99ef3663\",\"team\":\"FA\",\"cbs_id\":\"515627\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"WAS\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"jonathanstewart/949\",\"rotoworld_id\":\"4650\",\"stats_id\":\"8790\",\"position\":\"RB\",\"stats_global_id\":\"296086\",\"espn_id\":\"11247\",\"weight\":\"245\",\"id\":\"9101\",\"birthdate\":\"543301200\",\"draft_team\":\"CAR\",\"name\":\"Stewart, Jonathan\",\"draft_pick\":\"13\",\"college\":\"Oregon\",\"height\":\"70\",\"rotowire_id\":\"5578\",\"jersey\":\"28\",\"twitter_username\":\"Jonathanstewar1\",\"sportsdata_id\":\"96a1fc85-5af7-49fa-a5ac-ddc06c205ced\",\"team\":\"FA\",\"cbs_id\":\"565654\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"fleaflicker_id\":\"5372\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"MIA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"jordynelson/1032\",\"rotoworld_id\":\"4731\",\"stats_id\":\"8813\",\"position\":\"WR\",\"stats_global_id\":\"227442\",\"espn_id\":\"11270\",\"weight\":\"217\",\"id\":\"9118\",\"birthdate\":\"486363600\",\"draft_team\":\"GBP\",\"name\":\"Nelson, Jordy\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"75\",\"rotowire_id\":\"5691\",\"jersey\":\"82\",\"twitter_username\":\"JordyRNelson\",\"sportsdata_id\":\"9f2aebe4-b654-4f0e-a437-ec46f20b6bfe\",\"team\":\"FA\",\"cbs_id\":\"417623\"},{\"draft_year\":\"2008\",\"draft_round\":\"4\",\"nfl_id\":\"tyvonbranch/1681\",\"rotoworld_id\":\"4871\",\"stats_id\":\"8877\",\"position\":\"S\",\"stats_global_id\":\"267335\",\"espn_id\":\"11334\",\"weight\":\"210\",\"id\":\"9154\",\"birthdate\":\"534661200\",\"draft_team\":\"OAK\",\"name\":\"Branch, Tyvon\",\"draft_pick\":\"1\",\"college\":\"Connecticut\",\"height\":\"72\",\"rotowire_id\":\"5756\",\"jersey\":\"27\",\"twitter_username\":\"tyvonbranch\",\"sportsdata_id\":\"ce572d82-6f54-4317-8a1a-1c9c917972cc\",\"team\":\"FA\",\"cbs_id\":\"537432\"},{\"draft_year\":\"2008\",\"draft_round\":\"4\",\"nfl_id\":\"williamhayes/4483\",\"rotoworld_id\":\"4872\",\"stats_id\":\"8880\",\"position\":\"DE\",\"stats_global_id\":\"330171\",\"espn_id\":\"11337\",\"weight\":\"265\",\"id\":\"9156\",\"fleaflicker_id\":\"5427\",\"birthdate\":\"483858000\",\"draft_team\":\"TEN\",\"name\":\"Hayes, William\",\"draft_pick\":\"4\",\"college\":\"Winston-Salem State\",\"height\":\"75\",\"rotowire_id\":\"5869\",\"jersey\":\"95\",\"sportsdata_id\":\"a2eccf1c-8a74-48c1-8c22-81083df05274\",\"team\":\"FA\",\"cbs_id\":\"1615576\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"BAL\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"joshjohnson/264\",\"rotoworld_id\":\"4706\",\"stats_id\":\"8937\",\"position\":\"QB\",\"stats_global_id\":\"273278\",\"espn_id\":\"11394\",\"weight\":\"219\",\"id\":\"9207\",\"birthdate\":\"516517200\",\"draft_team\":\"TBB\",\"name\":\"Johnson, Josh\",\"draft_pick\":\"25\",\"college\":\"San Diego\",\"height\":\"75\",\"rotowire_id\":\"5653\",\"jersey\":\"4\",\"sportsdata_id\":\"73e133bf-d3f7-4fda-bd25-2fde66cb8ee1\",\"team\":\"FA\",\"cbs_id\":\"1325808\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"connorbarth/2507463\",\"rotoworld_id\":\"5048\",\"stats_id\":\"9219\",\"position\":\"PK\",\"stats_global_id\":\"268490\",\"espn_id\":\"11737\",\"weight\":\"204\",\"id\":\"9307\",\"birthdate\":\"513579600\",\"draft_team\":\"FA\",\"name\":\"Barth, Connor\",\"college\":\"North Carolina\",\"rotowire_id\":\"5849\",\"height\":\"71\",\"jersey\":\"4\",\"twitter_username\":\"connorbarth\",\"sportsdata_id\":\"4869b8db-2e38-4327-af11-cc1e17ef3490\",\"team\":\"FA\",\"cbs_id\":\"1616907\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"BUF\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"TEN\",\"cbs_id\":\"519042\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"TEN\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"marksanchez/79858\",\"rotoworld_id\":\"5192\",\"stats_id\":\"9269\",\"position\":\"QB\",\"stats_global_id\":\"297127\",\"espn_id\":\"12482\",\"weight\":\"225\",\"id\":\"9429\",\"birthdate\":\"532069200\",\"draft_team\":\"WAS\",\"name\":\"Sanchez, Mark\",\"draft_pick\":\"5\",\"college\":\"Southern Cal\",\"height\":\"74\",\"rotowire_id\":\"5973\",\"jersey\":\"6\",\"twitter_username\":\"Mark_Sanchez\",\"sportsdata_id\":\"e6c40f79-1bbd-4f62-9391-7f535f110c0d\",\"team\":\"FA\",\"cbs_id\":\"559373\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"PHI\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"brianorakpo/71423\",\"rotoworld_id\":\"5215\",\"stats_id\":\"9277\",\"position\":\"LB\",\"stats_global_id\":\"268228\",\"espn_id\":\"12439\",\"weight\":\"257\",\"id\":\"9435\",\"birthdate\":\"523170000\",\"draft_team\":\"WAS\",\"name\":\"Orakpo, Brian\",\"draft_pick\":\"13\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"6056\",\"jersey\":\"98\",\"twitter_username\":\"rak98\",\"sportsdata_id\":\"37fd76c4-41d0-4997-a94c-d135bd9dc582\",\"team\":\"FA\",\"cbs_id\":\"517030\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"jeremymaclin/80429\",\"rotoworld_id\":\"5169\",\"stats_id\":\"9283\",\"position\":\"WR\",\"stats_global_id\":\"333818\",\"espn_id\":\"12579\",\"weight\":\"198\",\"id\":\"9436\",\"birthdate\":\"579330000\",\"draft_team\":\"PHI\",\"name\":\"Maclin, Jeremy\",\"draft_pick\":\"19\",\"college\":\"Missouri\",\"height\":\"72\",\"rotowire_id\":\"5960\",\"jersey\":\"18\",\"twitter_username\":\"jmac_18\",\"sportsdata_id\":\"5f05de83-f15d-42f1-8271-284ca54f63de\",\"team\":\"FA\",\"cbs_id\":\"1123324\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"vontaedavis/79901\",\"rotoworld_id\":\"5089\",\"stats_id\":\"9289\",\"position\":\"CB\",\"stats_global_id\":\"333364\",\"espn_id\":\"12424\",\"weight\":\"207\",\"id\":\"9438\",\"birthdate\":\"578811600\",\"draft_team\":\"MIA\",\"name\":\"Davis, Vontae\",\"draft_pick\":\"25\",\"college\":\"Illinois\",\"height\":\"71\",\"rotowire_id\":\"5984\",\"jersey\":\"22\",\"twitter_username\":\"VontaeDavis23\",\"sportsdata_id\":\"1e3967fb-21cc-43b8-9f36-1c2e3b280cec\",\"team\":\"FA\",\"cbs_id\":\"1115108\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"michaeljohnson/2507784\",\"rotoworld_id\":\"5241\",\"stats_id\":\"9334\",\"position\":\"DE\",\"stats_global_id\":\"296883\",\"espn_id\":\"12436\",\"weight\":\"280\",\"id\":\"9442\",\"birthdate\":\"539672400\",\"draft_team\":\"CIN\",\"name\":\"Johnson, Michael\",\"draft_pick\":\"6\",\"college\":\"Georgia Tech\",\"height\":\"79\",\"rotowire_id\":\"6061\",\"jersey\":\"90\",\"twitter_username\":\"MJ9TRE\",\"sportsdata_id\":\"f1769155-163f-40e5-b0a8-61c3ce0fbeac\",\"team\":\"FA\",\"cbs_id\":\"584099\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"KCC\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"darriusheyward-bey/80427\",\"rotoworld_id\":\"5093\",\"stats_id\":\"9271\",\"position\":\"WR\",\"stats_global_id\":\"284925\",\"espn_id\":\"12570\",\"weight\":\"210\",\"id\":\"9452\",\"fleaflicker_id\":\"6044\",\"birthdate\":\"541314000\",\"draft_team\":\"OAK\",\"name\":\"Heyward-Bey, Darrius\",\"draft_pick\":\"7\",\"college\":\"Maryland\",\"height\":\"74\",\"rotowire_id\":\"5993\",\"jersey\":\"88\",\"twitter_username\":\"theDHB85\",\"sportsdata_id\":\"c456e060-d4d8-46cb-acf4-296edfb4f7bd\",\"team\":\"FA\",\"cbs_id\":\"564881\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"LAR\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"kennybritt/71217\",\"rotoworld_id\":\"5130\",\"stats_id\":\"9294\",\"position\":\"WR\",\"stats_global_id\":\"336831\",\"espn_id\":\"12556\",\"weight\":\"230\",\"id\":\"9467\",\"fleaflicker_id\":\"6067\",\"birthdate\":\"590648400\",\"draft_team\":\"TEN\",\"name\":\"Britt, Kenny\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"75\",\"rotowire_id\":\"5963\",\"jersey\":\"88\",\"twitter_username\":\"KennyBritt_18\",\"sportsdata_id\":\"869882c4-728a-4349-8294-ffa32b5a4f31\",\"team\":\"FA\",\"cbs_id\":\"1115016\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"ziggyhood/2507780\",\"rotoworld_id\":\"5292\",\"stats_id\":\"9296\",\"position\":\"DT\",\"stats_global_id\":\"300647\",\"espn_id\":\"12442\",\"weight\":\"305\",\"id\":\"9475\",\"birthdate\":\"540450000\",\"draft_team\":\"PIT\",\"name\":\"Hood, Evander\",\"draft_pick\":\"32\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"6067\",\"jersey\":\"76\",\"sportsdata_id\":\"5f2a0be9-3420-4aa4-a723-8956a58a8a8a\",\"team\":\"FA\",\"cbs_id\":\"584340\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"connorbarwin/71197\",\"rotoworld_id\":\"5267\",\"stats_id\":\"9310\",\"position\":\"LB\",\"stats_global_id\":\"285191\",\"espn_id\":\"12449\",\"weight\":\"255\",\"id\":\"9494\",\"fleaflicker_id\":\"6083\",\"birthdate\":\"529736400\",\"draft_team\":\"HOU\",\"name\":\"Barwin, Connor\",\"draft_pick\":\"14\",\"college\":\"Cincinnati\",\"height\":\"76\",\"rotowire_id\":\"6074\",\"jersey\":\"53\",\"twitter_username\":\"ConnorBarwin98\",\"sportsdata_id\":\"9f98ec9c-fac4-48f2-996c-9c7558f64221\",\"team\":\"FA\",\"cbs_id\":\"556598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"mikemitchell/238227\",\"rotoworld_id\":\"5308\",\"stats_id\":\"9311\",\"position\":\"S\",\"stats_global_id\":\"0\",\"espn_id\":\"12619\",\"weight\":\"216\",\"id\":\"9495\",\"birthdate\":\"550299600\",\"draft_team\":\"OAK\",\"name\":\"Mitchell, Michael\",\"draft_pick\":\"15\",\"college\":\"Ohio\",\"height\":\"73\",\"rotowire_id\":\"6102\",\"twitter_username\":\"MikeMitchell34\",\"sportsdata_id\":\"ca8815bc-c68f-4d18-80fc-f61e4a2053b8\",\"team\":\"FA\",\"cbs_id\":\"1674086\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"brandontate/81306\",\"rotoworld_id\":\"5140\",\"stats_id\":\"9347\",\"position\":\"WR\",\"stats_global_id\":\"288161\",\"espn_id\":\"12597\",\"weight\":\"195\",\"id\":\"9524\",\"fleaflicker_id\":\"6120\",\"birthdate\":\"560408400\",\"draft_team\":\"NEP\",\"name\":\"Tate, Brandon\",\"draft_pick\":\"19\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"6023\",\"jersey\":\"87\",\"sportsdata_id\":\"3289f9ce-e1d1-40ed-9d3f-242a1712c586\",\"team\":\"FA\",\"cbs_id\":\"563223\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"4\",\"nfl_id\":\"gloverquin/71441\",\"rotoworld_id\":\"5345\",\"stats_id\":\"9376\",\"position\":\"S\",\"stats_global_id\":\"323704\",\"espn_id\":\"12716\",\"weight\":\"207\",\"id\":\"9549\",\"birthdate\":\"506149200\",\"draft_team\":\"HOU\",\"name\":\"Quin, Glover\",\"draft_pick\":\"12\",\"college\":\"New Mexico\",\"height\":\"72\",\"rotowire_id\":\"6217\",\"jersey\":\"27\",\"twitter_username\":\"GloverQuin27\",\"sportsdata_id\":\"adc1b9ae-0b59-4399-bfba-959f694dde3d\",\"team\":\"FA\",\"cbs_id\":\"1674142\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"zachmiller/238457\",\"rotoworld_id\":\"5394\",\"stats_id\":\"9444\",\"position\":\"TE\",\"stats_global_id\":\"245993\",\"espn_id\":\"12699\",\"weight\":\"245\",\"id\":\"9611\",\"birthdate\":\"465714000\",\"draft_team\":\"JAC\",\"name\":\"Miller, Zach\",\"draft_pick\":\"7\",\"college\":\"Nebraska-Omaha\",\"height\":\"77\",\"rotowire_id\":\"6124\",\"jersey\":\"86\",\"sportsdata_id\":\"338b1ed8-131f-41f4-850a-1f93534558c7\",\"team\":\"FA\",\"cbs_id\":\"1674135\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"johnphillips/71435\",\"rotoworld_id\":\"5419\",\"stats_id\":\"9472\",\"position\":\"TE\",\"stats_global_id\":\"323332\",\"espn_id\":\"12550\",\"weight\":\"251\",\"id\":\"9638\",\"fleaflicker_id\":\"6245\",\"birthdate\":\"550386000\",\"draft_team\":\"DAL\",\"name\":\"Phillips, John\",\"draft_pick\":\"35\",\"college\":\"Virginia\",\"height\":\"77\",\"rotowire_id\":\"6130\",\"sportsdata_id\":\"c43cf6a1-8faa-4f95-aa2a-f1aac3ffe103\",\"team\":\"FA\",\"cbs_id\":\"1117442\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"captainmunnerlyn/80668\",\"rotoworld_id\":\"5119\",\"stats_id\":\"9480\",\"position\":\"CB\",\"stats_global_id\":\"332869\",\"espn_id\":\"12703\",\"weight\":\"195\",\"id\":\"9646\",\"fleaflicker_id\":\"6253\",\"birthdate\":\"576651600\",\"draft_team\":\"CAR\",\"name\":\"Munnerlyn, Captain\",\"draft_pick\":\"7\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"6242\",\"jersey\":\"26\",\"twitter_username\":\"captain_41\",\"sportsdata_id\":\"9dc422e6-f4ce-4bc9-b8bc-7ff946b51a8b\",\"team\":\"FA\",\"cbs_id\":\"1116692\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"rickyjeanfrancois/79583\",\"rotoworld_id\":\"5122\",\"stats_id\":\"9508\",\"position\":\"DT\",\"stats_global_id\":\"303880\",\"espn_id\":\"12443\",\"weight\":\"309\",\"id\":\"9674\",\"birthdate\":\"533106000\",\"draft_team\":\"SFO\",\"name\":\"Jean-Francois, Ricky\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"7141\",\"jersey\":\"97\",\"sportsdata_id\":\"c0e4ed02-82ec-4bde-a1b1-c035dde46402\",\"team\":\"FA\",\"cbs_id\":\"558589\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"ARI\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"4\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"TEN\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"9\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"CAR\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"CHI\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"IND\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"ramonhumber/2507644\",\"rotoworld_id\":\"5516\",\"stats_id\":\"9543\",\"position\":\"LB\",\"stats_global_id\":\"316286\",\"espn_id\":\"12988\",\"weight\":\"232\",\"id\":\"9729\",\"fleaflicker_id\":\"6325\",\"birthdate\":\"555570000\",\"draft_team\":\"FA\",\"name\":\"Humber, Ramon\",\"college\":\"North Dakota State\",\"rotowire_id\":\"6283\",\"height\":\"71\",\"jersey\":\"50\",\"sportsdata_id\":\"8bc1b144-ce6d-4889-a1e1-e7cc394756e6\",\"team\":\"FA\",\"cbs_id\":\"1675157\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"DAL\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"CAR\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"CAR\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"rolandomcclain/496941\",\"rotoworld_id\":\"5712\",\"stats_id\":\"23983\",\"position\":\"LB\",\"stats_global_id\":\"400136\",\"espn_id\":\"13255\",\"weight\":\"255\",\"id\":\"9821\",\"birthdate\":\"584859600\",\"draft_team\":\"OAK\",\"name\":\"McClain, Rolando\",\"draft_pick\":\"8\",\"college\":\"Alabama\",\"height\":\"76\",\"rotowire_id\":\"6607\",\"jersey\":\"55\",\"sportsdata_id\":\"2c4c0744-1bf0-4f1d-881a-9b1012de6dda\",\"team\":\"FA\",\"cbs_id\":\"1273352\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"FA\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"derrickmorgan/496828\",\"rotoworld_id\":\"5710\",\"stats_id\":\"23991\",\"position\":\"LB\",\"stats_global_id\":\"381280\",\"espn_id\":\"13248\",\"weight\":\"261\",\"id\":\"9824\",\"birthdate\":\"600066000\",\"draft_team\":\"TEN\",\"name\":\"Morgan, Derrick\",\"draft_pick\":\"16\",\"college\":\"Georgia Tech\",\"height\":\"76\",\"rotowire_id\":\"6569\",\"jersey\":\"91\",\"twitter_username\":\"dmorg91\",\"sportsdata_id\":\"428873c9-887a-48a2-b4d3-e06618ebd2dc\",\"team\":\"FA\",\"cbs_id\":\"1242904\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"CIN\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"MIN\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"BAL\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jermainegresham/497238\",\"rotoworld_id\":\"5549\",\"stats_id\":\"23996\",\"position\":\"TE\",\"stats_global_id\":\"333278\",\"espn_id\":\"13228\",\"weight\":\"260\",\"id\":\"9838\",\"birthdate\":\"582440400\",\"draft_team\":\"CIN\",\"name\":\"Gresham, Jermaine\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"height\":\"77\",\"rotowire_id\":\"6455\",\"jersey\":\"84\",\"sportsdata_id\":\"b44773b9-af17-4d6c-a453-132e20849712\",\"team\":\"FA\",\"cbs_id\":\"1123667\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"navorrobowman/2508088\",\"rotoworld_id\":\"5648\",\"stats_id\":\"24066\",\"position\":\"LB\",\"stats_global_id\":\"326576\",\"espn_id\":\"13262\",\"weight\":\"242\",\"id\":\"9840\",\"birthdate\":\"580798800\",\"draft_team\":\"SFO\",\"name\":\"Bowman, Navorro\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"6600\",\"jersey\":\"53\",\"twitter_username\":\"NBowman53\",\"sportsdata_id\":\"feac253c-6824-430d-ad66-b1dd78c5807c\",\"team\":\"FA\",\"cbs_id\":\"1117602\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"CLE\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"NYJ\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"WAS\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"FA*\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"98\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"MIN\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"SEA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"SFO\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"10\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"SFO\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"8\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"GBP\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DT\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"72\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"SEA\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"michaelhoomanawanui/497246\",\"rotoworld_id\":\"5909\",\"stats_id\":\"24108\",\"position\":\"TE\",\"stats_global_id\":\"333398\",\"espn_id\":\"13387\",\"weight\":\"265\",\"id\":\"9946\",\"birthdate\":\"583995600\",\"draft_team\":\"FA\",\"name\":\"Hoomanawanui, Michael\",\"draft_pick\":\"1\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"6535\",\"jersey\":\"84\",\"sportsdata_id\":\"add7a245-2444-491f-bdfb-b1b0d76f6a28\",\"team\":\"FA\",\"cbs_id\":\"1115114\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"kamchancellor/494257\",\"rotoworld_id\":\"5910\",\"stats_id\":\"24109\",\"position\":\"S\",\"stats_global_id\":\"333474\",\"espn_id\":\"13336\",\"weight\":\"225\",\"id\":\"9947\",\"birthdate\":\"576046800\",\"draft_team\":\"SEA\",\"name\":\"Chancellor, Kam\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"height\":\"75\",\"rotowire_id\":\"6651\",\"jersey\":\"31\",\"twitter_username\":\"Kam_Chancellor\",\"sportsdata_id\":\"1f49b95a-97cb-426e-8bd0-aeeb4b5b0ad1\",\"team\":\"FA\",\"cbs_id\":\"1130628\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"kendricklewis/494277\",\"rotoworld_id\":\"5911\",\"stats_id\":\"24112\",\"position\":\"S\",\"stats_global_id\":\"334724\",\"espn_id\":\"13404\",\"weight\":\"205\",\"id\":\"9948\",\"birthdate\":\"582440400\",\"draft_team\":\"KCC\",\"name\":\"Lewis, Kendrick\",\"draft_pick\":\"5\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6653\",\"jersey\":\"28\",\"twitter_username\":\"klewis23\",\"sportsdata_id\":\"07ab211c-4733-4336-b59a-2137f3efe5e8\",\"team\":\"FA\",\"cbs_id\":\"1137460\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"MIA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"FA*\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"fleaflicker_id\":\"6799\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"HOU\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"SEA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"BUF\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"barrychurch/494259\",\"rotoworld_id\":\"6363\",\"stats_id\":\"24603\",\"position\":\"S\",\"stats_global_id\":\"324487\",\"espn_id\":\"13338\",\"weight\":\"218\",\"id\":\"10074\",\"fleaflicker_id\":\"7175\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Church, Barry\",\"college\":\"Toledo\",\"rotowire_id\":\"7057\",\"height\":\"74\",\"jersey\":\"42\",\"twitter_username\":\"BarryChurch42\",\"sportsdata_id\":\"ad9a6262-7df3-41a8-9753-b89866f5cd0e\",\"team\":\"FA\",\"cbs_id\":\"1128845\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"samshields/1037374\",\"rotoworld_id\":\"6268\",\"stats_id\":\"24508\",\"position\":\"CB\",\"stats_global_id\":\"323404\",\"espn_id\":\"13769\",\"weight\":\"178\",\"id\":\"10084\",\"draft_team\":\"FA\",\"birthdate\":\"565938000\",\"name\":\"Shields, Sam\",\"college\":\"Miami\",\"rotowire_id\":\"7017\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"74b40266-cab7-4c5f-9f72-b560f7457a55\",\"team\":\"FA\",\"cbs_id\":\"1116667\"},{\"draft_year\":\"2010\",\"nfl_id\":\"frankzombo/2507948\",\"rotoworld_id\":\"6267\",\"stats_id\":\"24507\",\"position\":\"LB\",\"stats_global_id\":\"287527\",\"espn_id\":\"13779\",\"weight\":\"254\",\"id\":\"10099\",\"fleaflicker_id\":\"7170\",\"birthdate\":\"541918800\",\"draft_team\":\"FA\",\"name\":\"Zombo, Frank\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7021\",\"height\":\"75\",\"jersey\":\"51\",\"sportsdata_id\":\"7853d82d-7c4b-4275-8ade-f8b96dd89bf5\",\"team\":\"FA\",\"cbs_id\":\"559515\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"CAR\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"TBB\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2010\",\"nfl_id\":\"loganpaulsen/2507828\",\"rotoworld_id\":\"6368\",\"stats_id\":\"24608\",\"position\":\"TE\",\"stats_global_id\":\"300115\",\"espn_id\":\"13726\",\"weight\":\"268\",\"id\":\"10123\",\"draft_team\":\"FA\",\"birthdate\":\"541314000\",\"name\":\"Paulsen, Logan\",\"college\":\"UCLA\",\"rotowire_id\":\"6871\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"518c96c5-65bb-4559-8074-9cdb2ca32f99\",\"team\":\"FA\",\"cbs_id\":\"559624\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"NYJ\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"TEN\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"42\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"MIN\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"0\",\"nfl_id\":\"vincentrey/2507843\",\"rotoworld_id\":\"6106\",\"stats_id\":\"24336\",\"position\":\"LB\",\"stats_global_id\":\"334037\",\"espn_id\":\"13766\",\"weight\":\"240\",\"id\":\"10224\",\"fleaflicker_id\":\"7074\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Rey, Vincent\",\"college\":\"Duke\",\"rotowire_id\":\"7215\",\"height\":\"72\",\"jersey\":\"57\",\"twitter_username\":\"VinnyRey\",\"sportsdata_id\":\"e232b84c-2e05-494a-98ac-69489544d16f\",\"team\":\"FA\",\"cbs_id\":\"1114353\"},{\"draft_year\":\"2010\",\"nfl_id\":\"rafaelbush/2507817\",\"rotoworld_id\":\"6037\",\"stats_id\":\"24259\",\"position\":\"S\",\"stats_global_id\":\"303006\",\"espn_id\":\"13544\",\"weight\":\"203\",\"id\":\"10244\",\"birthdate\":\"547794000\",\"draft_team\":\"FA\",\"name\":\"Bush, Rafael\",\"college\":\"South Carolina State\",\"rotowire_id\":\"6909\",\"height\":\"71\",\"jersey\":\"20\",\"twitter_username\":\"rbush36\",\"sportsdata_id\":\"422f9f66-97d7-4bae-9840-24b3a24655e8\",\"team\":\"FA\",\"cbs_id\":\"1732362\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"MIN\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"twitter_username\":\"RiverboatRonHC\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9479\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shurmur, Pat\",\"stats_global_id\":\"0\",\"id\":\"10254\",\"team\":\"FA\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"99\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"ATL\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"CHI\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"JAC\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"DE\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"58\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"DAL\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"CAR\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"99\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"LB\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"BUF\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"torreysmith/2495459\",\"rotoworld_id\":\"6442\",\"stats_id\":\"24845\",\"position\":\"WR\",\"stats_global_id\":\"399548\",\"espn_id\":\"14032\",\"weight\":\"205\",\"id\":\"10289\",\"birthdate\":\"601794000\",\"draft_team\":\"BAL\",\"name\":\"Smith, Torrey\",\"draft_pick\":\"26\",\"college\":\"Maryland\",\"height\":\"72\",\"rotowire_id\":\"7251\",\"jersey\":\"11\",\"twitter_username\":\"TorreySmithWR\",\"sportsdata_id\":\"a735765c-3ca8-4557-b06e-a30fd415982c\",\"team\":\"FA\",\"cbs_id\":\"1242961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"demarcomurray/2495207\",\"rotoworld_id\":\"6585\",\"stats_id\":\"24858\",\"position\":\"RB\",\"stats_global_id\":\"333272\",\"espn_id\":\"14005\",\"weight\":\"220\",\"id\":\"10302\",\"birthdate\":\"571640400\",\"draft_team\":\"DAL\",\"name\":\"Murray, DeMarco\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"7359\",\"jersey\":\"29\",\"twitter_username\":\"DeMarcoMurray\",\"sportsdata_id\":\"478ae115-d220-424e-af45-56137f163d3a\",\"team\":\"FA\",\"cbs_id\":\"1123691\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"shanevereen/2495473\",\"rotoworld_id\":\"6445\",\"stats_id\":\"24843\",\"position\":\"RB\",\"stats_global_id\":\"401726\",\"espn_id\":\"14017\",\"weight\":\"205\",\"id\":\"10303\",\"fleaflicker_id\":\"7450\",\"birthdate\":\"604818000\",\"draft_team\":\"NEP\",\"name\":\"Vereen, Shane\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"7250\",\"jersey\":\"35\",\"twitter_username\":\"ShaneVereen34\",\"sportsdata_id\":\"600ae879-d95a-4ac4-ae4e-72c05a05f1ad\",\"team\":\"FA\",\"cbs_id\":\"1273006\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"DAL\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"CIN\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"ARI\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"LAC\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"IND\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brucecarter/2495136\",\"rotoworld_id\":\"6590\",\"stats_id\":\"24827\",\"position\":\"LB\",\"stats_global_id\":\"323334\",\"espn_id\":\"14026\",\"weight\":\"240\",\"id\":\"10321\",\"fleaflicker_id\":\"7399\",\"birthdate\":\"572245200\",\"draft_team\":\"DAL\",\"name\":\"Carter, Bruce\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"7477\",\"jersey\":\"55\",\"twitter_username\":\"BruceCarter54\",\"sportsdata_id\":\"6fbd5f30-db84-4c38-98ea-69631bdbc53f\",\"team\":\"FA\",\"cbs_id\":\"1242983\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jarvisjenkins/2495178\",\"rotoworld_id\":\"6613\",\"stats_id\":\"24828\",\"position\":\"DE\",\"stats_global_id\":\"401824\",\"espn_id\":\"14019\",\"weight\":\"300\",\"id\":\"10322\",\"fleaflicker_id\":\"7422\",\"birthdate\":\"577861200\",\"draft_team\":\"WAS\",\"name\":\"Jenkins, Jarvis\",\"draft_pick\":\"9\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"7470\",\"jersey\":\"94\",\"twitter_username\":\"Jarvis99jenkins\",\"sportsdata_id\":\"5c453cab-dfd6-4c8f-ad31-f872229c6e06\",\"team\":\"FA\",\"cbs_id\":\"1262942\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"FA\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"kelvinsheppard/2495229\",\"rotoworld_id\":\"6620\",\"stats_id\":\"24855\",\"position\":\"LB\",\"stats_global_id\":\"323237\",\"espn_id\":\"13995\",\"weight\":\"249\",\"id\":\"10332\",\"fleaflicker_id\":\"7446\",\"birthdate\":\"568098000\",\"draft_team\":\"BUF\",\"name\":\"Sheppard, Kelvin\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"7498\",\"jersey\":\"51\",\"twitter_username\":\"KelvinSheppard\",\"sportsdata_id\":\"7190fb71-0916-4f9d-88a0-8c1a8c1c9d0d\",\"team\":\"FA\",\"cbs_id\":\"1116449\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"stevanridley/2495470\",\"rotoworld_id\":\"6487\",\"stats_id\":\"24860\",\"position\":\"RB\",\"stats_global_id\":\"381639\",\"espn_id\":\"14028\",\"weight\":\"220\",\"id\":\"10334\",\"fleaflicker_id\":\"7443\",\"birthdate\":\"601880400\",\"draft_team\":\"NEP\",\"name\":\"Ridley, Stevan\",\"draft_pick\":\"9\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"7361\",\"jersey\":\"22\",\"twitter_username\":\"StevanRidley\",\"sportsdata_id\":\"170b4c5f-a345-4899-8d81-e8982b0f3d65\",\"team\":\"FA\",\"cbs_id\":\"1244982\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"TEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"shareecewright/2495251\",\"rotoworld_id\":\"6606\",\"stats_id\":\"24876\",\"position\":\"CB\",\"stats_global_id\":\"322844\",\"espn_id\":\"14010\",\"weight\":\"184\",\"id\":\"10341\",\"fleaflicker_id\":\"7455\",\"birthdate\":\"544856400\",\"draft_team\":\"SDC\",\"name\":\"Wright, Shareece\",\"draft_pick\":\"25\",\"college\":\"USC\",\"height\":\"71\",\"rotowire_id\":\"7517\",\"jersey\":\"43\",\"twitter_username\":\"ShareeceWright\",\"sportsdata_id\":\"221abfe3-f41c-4c1f-aa88-ca06fc57ed8e\",\"team\":\"HOU\",\"cbs_id\":\"1117679\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconte/2495272\",\"rotoworld_id\":\"6629\",\"stats_id\":\"24880\",\"position\":\"S\",\"stats_global_id\":\"401723\",\"espn_id\":\"14016\",\"weight\":\"203\",\"id\":\"10344\",\"fleaflicker_id\":\"7402\",\"birthdate\":\"604213200\",\"draft_team\":\"CHI\",\"name\":\"Conte, Chris\",\"draft_pick\":\"29\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"7539\",\"jersey\":\"23\",\"twitter_username\":\"ChrisConte47\",\"sportsdata_id\":\"c10e08b6-33a7-4233-8628-29b40d1183ea\",\"team\":\"FA\",\"cbs_id\":\"1272978\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"da'norrissearcy/2495339\",\"rotoworld_id\":\"6634\",\"stats_id\":\"24887\",\"position\":\"S\",\"stats_global_id\":\"400052\",\"espn_id\":\"14143\",\"weight\":\"205\",\"id\":\"10351\",\"fleaflicker_id\":\"7579\",\"birthdate\":\"595659600\",\"draft_team\":\"BUF\",\"name\":\"Searcy, Da'Norris\",\"draft_pick\":\"3\",\"college\":\"North Carolina\",\"height\":\"71\",\"rotowire_id\":\"7537\",\"jersey\":\"21\",\"twitter_username\":\"DSearcy25\",\"sportsdata_id\":\"d0840d54-b383-4e26-9055-5a57067951e5\",\"team\":\"FA\",\"cbs_id\":\"1243007\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"TBB\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"80\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"ATL\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"34\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"HOU\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"NYJ\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"davonhouse/2495170\",\"rotoworld_id\":\"6574\",\"stats_id\":\"24918\",\"position\":\"CB\",\"stats_global_id\":\"410959\",\"espn_id\":\"14157\",\"weight\":\"195\",\"id\":\"10374\",\"birthdate\":\"616050000\",\"draft_team\":\"GBP\",\"name\":\"House, Davon\",\"draft_pick\":\"34\",\"college\":\"New Mexico St.\",\"height\":\"72\",\"rotowire_id\":\"7518\",\"jersey\":\"31\",\"twitter_username\":\"DavonHouse\",\"sportsdata_id\":\"bb6c7928-54f1-43bd-bf14-f2645644dda9\",\"team\":\"FA\",\"cbs_id\":\"1620126\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"TEN\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jeremykerley/2495189\",\"rotoworld_id\":\"6551\",\"stats_id\":\"24940\",\"position\":\"WR\",\"stats_global_id\":\"400313\",\"espn_id\":\"14151\",\"weight\":\"188\",\"id\":\"10392\",\"fleaflicker_id\":\"7530\",\"birthdate\":\"596869200\",\"draft_team\":\"NYJ\",\"name\":\"Kerley, Jeremy\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"height\":\"69\",\"rotowire_id\":\"7392\",\"jersey\":\"10\",\"twitter_username\":\"JKerley_11\",\"sportsdata_id\":\"769d7178-df4e-4127-8166-8116165921e8\",\"team\":\"FA\",\"cbs_id\":\"1273689\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"nilespaul/2495211\",\"rotoworld_id\":\"6661\",\"stats_id\":\"24942\",\"position\":\"TE\",\"stats_global_id\":\"406159\",\"espn_id\":\"14156\",\"weight\":\"242\",\"id\":\"10394\",\"fleaflicker_id\":\"7556\",\"birthdate\":\"618642000\",\"draft_team\":\"WAS\",\"name\":\"Paul, Niles\",\"draft_pick\":\"24\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7384\",\"jersey\":\"43\",\"twitter_username\":\"Niles_Paul84\",\"sportsdata_id\":\"38f5843a-8318-4eb7-b517-c83d415e77a4\",\"team\":\"FA\",\"cbs_id\":\"1272502\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"byronmaxwell/2495310\",\"rotoworld_id\":\"6680\",\"stats_id\":\"24960\",\"position\":\"CB\",\"stats_global_id\":\"332967\",\"espn_id\":\"14133\",\"weight\":\"207\",\"id\":\"10408\",\"birthdate\":\"572590800\",\"draft_team\":\"SEA\",\"name\":\"Maxwell, Byron\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"7603\",\"jersey\":\"41\",\"sportsdata_id\":\"fc309bb0-d8f9-49a8-b2d3-5c6eea4dec24\",\"team\":\"FA\",\"cbs_id\":\"1242845\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"ARI\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"OAK\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"CAR\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"ATL\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"51\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"DAL\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"DAL\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2011\",\"nfl_id\":\"dougbaldwin/2530747\",\"rotoworld_id\":\"6825\",\"stats_id\":\"25105\",\"position\":\"WR\",\"stats_global_id\":\"399777\",\"espn_id\":\"14221\",\"weight\":\"192\",\"id\":\"10527\",\"birthdate\":\"590821200\",\"draft_team\":\"FA\",\"name\":\"Baldwin, Doug\",\"college\":\"Stanford\",\"rotowire_id\":\"7963\",\"height\":\"70\",\"jersey\":\"89\",\"twitter_username\":\"DougBaldwinJr\",\"sportsdata_id\":\"e1b29179-074b-4c91-8797-763b76ac618a\",\"team\":\"FA\",\"cbs_id\":\"1244486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tomjohnson/2506779\",\"rotoworld_id\":\"6514\",\"stats_id\":\"24778\",\"position\":\"DT\",\"stats_global_id\":\"248299\",\"espn_id\":\"10001\",\"weight\":\"285\",\"id\":\"10540\",\"draft_team\":\"FA\",\"birthdate\":\"462690000\",\"name\":\"Johnson, Tom\",\"college\":\"Southern Miss\",\"rotowire_id\":\"4662\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"ee305db3-cdaf-4eb3-b950-7146d51eac34\",\"team\":\"FA\",\"cbs_id\":\"1109438\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"NYJ\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"CAR\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"DEN\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"ronparker/2530794\",\"rotoworld_id\":\"6811\",\"stats_id\":\"25090\",\"position\":\"S\",\"stats_global_id\":\"512802\",\"espn_id\":\"14297\",\"weight\":\"206\",\"id\":\"10610\",\"birthdate\":\"556174800\",\"draft_team\":\"FA\",\"name\":\"Parker, Ron\",\"college\":\"Newberry\",\"rotowire_id\":\"7817\",\"height\":\"72\",\"jersey\":\"38\",\"twitter_username\":\"ghost_0836\",\"sportsdata_id\":\"e9a0297a-0b34-4c55-af1f-ca113d672195\",\"team\":\"FA\",\"cbs_id\":\"1891920\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"rotoworld_id\":\"7097\",\"stats_id\":\"25379\",\"position\":\"WR\",\"stats_global_id\":\"400317\",\"espn_id\":\"14583\",\"weight\":\"216\",\"id\":\"10651\",\"draft_team\":\"FA\",\"birthdate\":\"612507600\",\"name\":\"Aiken, Kamar\",\"college\":\"Central Florida\",\"rotowire_id\":\"8000\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"3058b3c8-0fa3-4bd4-9df9-6a56a7b4af88\",\"team\":\"FA\",\"cbs_id\":\"1853727\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"BAL\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2011\",\"nfl_id\":\"benjacobs/2531080\",\"rotoworld_id\":\"7315\",\"stats_id\":\"25593\",\"position\":\"LB\",\"stats_global_id\":\"387834\",\"espn_id\":\"14739\",\"weight\":\"240\",\"id\":\"10662\",\"draft_team\":\"FA\",\"birthdate\":\"577256400\",\"name\":\"Jacobs, Ben\",\"college\":\"Fresno State\",\"rotowire_id\":\"7759\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"7bf442fb-62c6-4cf5-8d5d-a8ccd6daa80b\",\"team\":\"FA\",\"cbs_id\":\"1857137\"},{\"draft_year\":\"2011\",\"nfl_id\":\"andreholmes/2495453\",\"rotoworld_id\":\"6954\",\"stats_id\":\"25234\",\"position\":\"WR\",\"stats_global_id\":\"557954\",\"espn_id\":\"14403\",\"weight\":\"210\",\"id\":\"10674\",\"fleaflicker_id\":\"8219\",\"birthdate\":\"582440400\",\"draft_team\":\"FA\",\"name\":\"Holmes, Andre\",\"college\":\"Hillsdale\",\"rotowire_id\":\"7405\",\"height\":\"76\",\"jersey\":\"18\",\"twitter_username\":\"dreholmes18\",\"sportsdata_id\":\"996974b8-2e0a-47d9-90a7-c3455192d06b\",\"team\":\"FA\",\"cbs_id\":\"1724424\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA*\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"brandonweeden/2532970\",\"rotoworld_id\":\"7480\",\"stats_id\":\"25732\",\"position\":\"QB\",\"stats_global_id\":\"397523\",\"espn_id\":\"14878\",\"weight\":\"227\",\"id\":\"10698\",\"fleaflicker_id\":\"8445\",\"birthdate\":\"434955600\",\"draft_team\":\"CLE\",\"name\":\"Weeden, Brandon\",\"draft_pick\":\"22\",\"college\":\"Oklahoma State\",\"height\":\"75\",\"rotowire_id\":\"8056\",\"jersey\":\"3\",\"twitter_username\":\"bweeden3\",\"sportsdata_id\":\"01291a8d-d97c-4d88-b497-b5ad4b72f626\",\"team\":\"HOU\",\"cbs_id\":\"1272538\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"7\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"JAC\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"brockosweiler/2533436\",\"rotoworld_id\":\"7450\",\"stats_id\":\"25767\",\"position\":\"QB\",\"stats_global_id\":\"496553\",\"espn_id\":\"14879\",\"weight\":\"240\",\"id\":\"10702\",\"birthdate\":\"659250000\",\"draft_team\":\"DEN\",\"name\":\"Osweiler, Brock\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"height\":\"79\",\"rotowire_id\":\"8033\",\"jersey\":\"8\",\"twitter_username\":\"bosweiler17\",\"sportsdata_id\":\"0847010c-9a77-4f0b-9d63-c8b4b224d263\",\"team\":\"FA\",\"cbs_id\":\"1664777\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"HOU\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"SEA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"kendallwright/2532977\",\"rotoworld_id\":\"7425\",\"stats_id\":\"25730\",\"position\":\"WR\",\"stats_global_id\":\"459364\",\"espn_id\":\"14909\",\"weight\":\"185\",\"id\":\"10720\",\"fleaflicker_id\":\"8622\",\"birthdate\":\"626850000\",\"draft_team\":\"TEN\",\"name\":\"Wright, Kendall\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"height\":\"70\",\"rotowire_id\":\"8091\",\"jersey\":\"12\",\"sportsdata_id\":\"441e8866-33f1-4820-9fa3-3aa2c7535975\",\"team\":\"FA\",\"cbs_id\":\"1632385\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"NEP\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"CAR\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"brianquick/2532933\",\"rotoworld_id\":\"7477\",\"stats_id\":\"25743\",\"position\":\"WR\",\"stats_global_id\":\"390159\",\"espn_id\":\"14914\",\"weight\":\"215\",\"id\":\"10735\",\"fleaflicker_id\":\"8605\",\"birthdate\":\"613026000\",\"draft_team\":\"STL\",\"name\":\"Quick, Brian\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"height\":\"75\",\"rotowire_id\":\"8095\",\"jersey\":\"83\",\"twitter_username\":\"WORKAHOLIC_BQ\",\"sportsdata_id\":\"f8ca735c-2779-4d0c-914e-e58e11c2356d\",\"team\":\"FA\",\"cbs_id\":\"1687422\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"12\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"LAC\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"cobyfleener/2532838\",\"rotoworld_id\":\"7418\",\"stats_id\":\"25744\",\"position\":\"TE\",\"stats_global_id\":\"399848\",\"espn_id\":\"14900\",\"weight\":\"251\",\"id\":\"10743\",\"birthdate\":\"590734800\",\"draft_team\":\"IND\",\"name\":\"Fleener, Coby\",\"draft_pick\":\"2\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"8064\",\"jersey\":\"82\",\"twitter_username\":\"coby\",\"sportsdata_id\":\"9102665d-a658-4264-81c3-b9810776ddf0\",\"team\":\"FA\",\"cbs_id\":\"1244492\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"orsoncharles/2533047\",\"rotoworld_id\":\"7457\",\"stats_id\":\"25826\",\"position\":\"TE\",\"stats_global_id\":\"512099\",\"espn_id\":\"14902\",\"weight\":\"257\",\"id\":\"10747\",\"birthdate\":\"664952400\",\"draft_team\":\"CIN\",\"name\":\"Charles, Orson\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"8042\",\"jersey\":\"83\",\"twitter_username\":\"O_Charles80\",\"sportsdata_id\":\"b6325c85-c313-4cfb-a299-9884d5e9e389\",\"team\":\"FA\",\"cbs_id\":\"1707633\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"fleaflicker_id\":\"8577\",\"birthdate\":\"609570000\",\"draft_team\":\"SDC\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"nickperry/2533048\",\"rotoworld_id\":\"7411\",\"stats_id\":\"25738\",\"position\":\"LB\",\"stats_global_id\":\"459231\",\"espn_id\":\"14929\",\"weight\":\"265\",\"id\":\"10750\",\"fleaflicker_id\":\"8475\",\"birthdate\":\"639896400\",\"draft_team\":\"GBP\",\"name\":\"Perry, Nick\",\"draft_pick\":\"28\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"8135\",\"jersey\":\"53\",\"twitter_username\":\"NickTheGreat8\",\"sportsdata_id\":\"204e0eb0-c5ef-4522-9056-393e2e5177ea\",\"team\":\"FA\",\"cbs_id\":\"1631896\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"andrebranch/2532801\",\"rotoworld_id\":\"7532\",\"stats_id\":\"25748\",\"position\":\"DE\",\"stats_global_id\":\"401755\",\"espn_id\":\"14952\",\"weight\":\"263\",\"id\":\"10752\",\"fleaflicker_id\":\"8495\",\"birthdate\":\"616395600\",\"draft_team\":\"JAC\",\"name\":\"Branch, Andre\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"height\":\"77\",\"rotowire_id\":\"8136\",\"jersey\":\"49\",\"twitter_username\":\"BranchNout90\",\"sportsdata_id\":\"ba384269-98b5-47ee-93bb-18a4e71ad0eb\",\"team\":\"FA\",\"cbs_id\":\"1262880\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"PHI\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"CAR\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"55\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"CAR\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"OAK\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"KCC\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"27\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"CIN\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"26\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"PIT\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"georgeiloka/2532869\",\"rotoworld_id\":\"7502\",\"stats_id\":\"25877\",\"position\":\"S\",\"stats_global_id\":\"449634\",\"espn_id\":\"15085\",\"weight\":\"227\",\"id\":\"10784\",\"fleaflicker_id\":\"8428\",\"birthdate\":\"645858000\",\"draft_team\":\"CIN\",\"name\":\"Iloka, George\",\"draft_pick\":\"32\",\"college\":\"Boise State\",\"height\":\"76\",\"rotowire_id\":\"8335\",\"jersey\":\"20\",\"twitter_username\":\"George_iloka\",\"sportsdata_id\":\"2b9494e4-953a-4aac-afe7-edd2d7be27da\",\"team\":\"FA\",\"cbs_id\":\"1621494\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"nfl_id\":\"leonardjohnson/2532878\",\"rotoworld_id\":\"7777\",\"stats_id\":\"26043\",\"position\":\"CB\",\"stats_global_id\":\"462232\",\"espn_id\":\"15398\",\"weight\":\"194\",\"id\":\"10791\",\"fleaflicker_id\":\"9042\",\"birthdate\":\"638773200\",\"draft_team\":\"FA\",\"name\":\"Johnson, Leonard\",\"college\":\"Iowa State\",\"rotowire_id\":\"8170\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"2023386f-584e-4cd3-b4e6-491cda3fee31\",\"team\":\"FA\",\"cbs_id\":\"1630686\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"fleaflicker_id\":\"8472\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"DEN\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"SEA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"32\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"DET\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"NYJ\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"joshrobinson/2533542\",\"rotoworld_id\":\"7454\",\"stats_id\":\"25776\",\"position\":\"CB\",\"stats_global_id\":\"495661\",\"espn_id\":\"14948\",\"weight\":\"200\",\"id\":\"10811\",\"birthdate\":\"663310800\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Josh\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"70\",\"rotowire_id\":\"8211\",\"jersey\":\"29\",\"twitter_username\":\"JROB_2one\",\"sportsdata_id\":\"8cd557fb-94df-48c2-8665-198e5c8be20b\",\"team\":\"FA\",\"cbs_id\":\"1681961\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"PHI\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"OAK\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"WAS\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"NYG\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"96\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"DET\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"59\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"OAK\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"JAC\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"24\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"WAS\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"koreytoomer/2534567\",\"rotoworld_id\":\"7604\",\"stats_id\":\"25864\",\"position\":\"LB\",\"stats_global_id\":\"383433\",\"espn_id\":\"15112\",\"weight\":\"235\",\"id\":\"10857\",\"birthdate\":\"597646800\",\"draft_team\":\"SEA\",\"name\":\"Toomer, Korey\",\"draft_pick\":\"19\",\"college\":\"Idaho\",\"height\":\"74\",\"rotowire_id\":\"8344\",\"jersey\":\"56\",\"twitter_username\":\"Korey_Toomer\",\"sportsdata_id\":\"61a9fbd6-4913-4814-b5a7-9c71fbd4cac0\",\"team\":\"FA\",\"cbs_id\":\"1971889\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DT\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"95\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"ATL\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"4\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"LAR\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"FA\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"keithtandy/2534741\",\"rotoworld_id\":\"7619\",\"stats_id\":\"25884\",\"position\":\"S\",\"stats_global_id\":\"405010\",\"espn_id\":\"15001\",\"weight\":\"205\",\"id\":\"10871\",\"birthdate\":\"603262800\",\"draft_team\":\"TBB\",\"name\":\"Tandy, Keith\",\"draft_pick\":\"4\",\"college\":\"West Virginia\",\"height\":\"70\",\"rotowire_id\":\"8318\",\"jersey\":\"35\",\"twitter_username\":\"kytandy\",\"sportsdata_id\":\"e597cba3-fa90-4ce2-85e7-3e0bed1791d5\",\"team\":\"FA\",\"cbs_id\":\"1971902\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"blairwalsh/2532968\",\"rotoworld_id\":\"7620\",\"stats_id\":\"25885\",\"position\":\"PK\",\"stats_global_id\":\"458095\",\"espn_id\":\"15058\",\"weight\":\"175\",\"id\":\"10872\",\"fleaflicker_id\":\"8524\",\"birthdate\":\"631774800\",\"draft_team\":\"MIN\",\"name\":\"Walsh, Blair\",\"draft_pick\":\"5\",\"college\":\"Georgia\",\"height\":\"70\",\"rotowire_id\":\"8177\",\"jersey\":\"16\",\"twitter_username\":\"BlairWalsh3\",\"sportsdata_id\":\"afac3e25-d72d-43f7-be4b-d33ed91a0bf8\",\"team\":\"FA\",\"cbs_id\":\"1632083\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"28\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NEP\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"billywinn/2532976\",\"rotoworld_id\":\"7646\",\"stats_id\":\"25915\",\"position\":\"DE\",\"stats_global_id\":\"381799\",\"espn_id\":\"15021\",\"weight\":\"300\",\"id\":\"10888\",\"birthdate\":\"608619600\",\"draft_team\":\"CLE\",\"name\":\"Winn, Billy\",\"draft_pick\":\"35\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8160\",\"jersey\":\"90\",\"twitter_username\":\"Billy_Boi_90\",\"sportsdata_id\":\"408aff57-2b32-41f7-9520-0064ad14af21\",\"team\":\"DEN\",\"cbs_id\":\"1274395\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"nfl_id\":\"rishardmatthews/2532903\",\"rotoworld_id\":\"7667\",\"stats_id\":\"25937\",\"position\":\"WR\",\"stats_global_id\":\"557389\",\"espn_id\":\"15102\",\"weight\":\"217\",\"id\":\"10903\",\"birthdate\":\"624171600\",\"draft_team\":\"MIA\",\"name\":\"Matthews, Rishard\",\"draft_pick\":\"20\",\"college\":\"Nevada\",\"height\":\"72\",\"rotowire_id\":\"8232\",\"jersey\":\"12\",\"twitter_username\":\"_RMatthews\",\"sportsdata_id\":\"969a4d68-1d76-4e64-bfff-e898a9ac6bd4\",\"team\":\"FA\",\"cbs_id\":\"1762335\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"NYG\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"OAK\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"8\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"WAS\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodstreater/2535869\",\"rotoworld_id\":\"8148\",\"stats_id\":\"26428\",\"position\":\"WR\",\"stats_global_id\":\"546942\",\"espn_id\":\"15391\",\"weight\":\"195\",\"id\":\"10955\",\"birthdate\":\"571381200\",\"draft_team\":\"FA\",\"name\":\"Streater, Rod\",\"college\":\"Temple\",\"rotowire_id\":\"8406\",\"height\":\"74\",\"jersey\":\"13\",\"twitter_username\":\"rodstreater80\",\"sportsdata_id\":\"d2cad5f8-b35f-4cf4-9567-57c387ba6225\",\"team\":\"FA\",\"cbs_id\":\"1977128\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"SEA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"10\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2012\",\"nfl_id\":\"travariscadet/2535890\",\"rotoworld_id\":\"7758\",\"stats_id\":\"26024\",\"position\":\"RB\",\"stats_global_id\":\"400644\",\"espn_id\":\"15457\",\"weight\":\"210\",\"id\":\"10978\",\"fleaflicker_id\":\"8904\",\"birthdate\":\"602312400\",\"draft_team\":\"FA\",\"name\":\"Cadet, Travaris\",\"college\":\"Appalachian State\",\"rotowire_id\":\"8454\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"TravarisCadet39\",\"sportsdata_id\":\"b4ce3e07-7848-4da2-a33e-4f04ce540ba5\",\"team\":\"FA\",\"cbs_id\":\"1978283\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"CAR\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"BUF\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"austindavis/2533349\",\"rotoworld_id\":\"8069\",\"stats_id\":\"26346\",\"position\":\"QB\",\"stats_global_id\":\"400943\",\"espn_id\":\"15187\",\"weight\":\"221\",\"id\":\"11001\",\"draft_team\":\"FA\",\"birthdate\":\"612766800\",\"name\":\"Davis, Austin\",\"college\":\"Southern Miss\",\"rotowire_id\":\"8499\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"fa8cfe11-018a-4d4c-9588-c86cab0415c0\",\"team\":\"FA\",\"cbs_id\":\"1265479\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"SFO\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"39\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"HOU\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derrickshelby/2532989\",\"rotoworld_id\":\"8017\",\"stats_id\":\"26297\",\"position\":\"DE\",\"stats_global_id\":\"383524\",\"espn_id\":\"15278\",\"weight\":\"280\",\"id\":\"11031\",\"birthdate\":\"604990800\",\"draft_team\":\"FA\",\"name\":\"Shelby, Derrick\",\"college\":\"Utah\",\"rotowire_id\":\"8470\",\"height\":\"74\",\"jersey\":\"90\",\"twitter_username\":\"DerrickShelbyII\",\"sportsdata_id\":\"86a412bb-7db6-4c6a-86b0-499afd326fd9\",\"team\":\"FA\",\"cbs_id\":\"1245674\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"DET\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"twitter_username\":\"BruceArians\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"TEN\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"aaronbrewer/2535529\",\"rotoworld_id\":\"7714\",\"stats_id\":\"25976\",\"position\":\"LB\",\"stats_global_id\":\"463365\",\"espn_id\":\"15241\",\"weight\":\"232\",\"id\":\"11073\",\"draft_team\":\"FA\",\"birthdate\":\"647154000\",\"name\":\"Brewer, Aaron\",\"college\":\"San Diego State\",\"rotowire_id\":\"8543\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"99149c69-e14f-4e05-9c3a-8ae7e3b1f00b\",\"team\":\"ARI\",\"cbs_id\":\"1975982\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"fleaflicker_id\":\"9009\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"DET\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"emmanuellamur/2536032\",\"rotoworld_id\":\"8194\",\"stats_id\":\"26475\",\"position\":\"LB\",\"stats_global_id\":\"509206\",\"espn_id\":\"15640\",\"weight\":\"245\",\"id\":\"11078\",\"fleaflicker_id\":\"9159\",\"birthdate\":\"613285200\",\"draft_team\":\"FA\",\"name\":\"Lamur, Emmanuel\",\"college\":\"Kansas State\",\"rotowire_id\":\"8578\",\"height\":\"76\",\"jersey\":\"57\",\"twitter_username\":\"EmanLamur\",\"sportsdata_id\":\"3f6b7426-8fc2-44c8-9cba-9d6234e9d43d\",\"team\":\"FA\",\"cbs_id\":\"1979717\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"BUF\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"NEP\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"NYJ\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"2012\",\"nfl_id\":\"eddiepleasant/2532928\",\"rotoworld_id\":\"8202\",\"stats_id\":\"26484\",\"position\":\"S\",\"stats_global_id\":\"401826\",\"espn_id\":\"15612\",\"weight\":\"210\",\"id\":\"11127\",\"draft_team\":\"FA\",\"birthdate\":\"598338000\",\"name\":\"Pleasant, Eddie\",\"college\":\"Oregon\",\"rotowire_id\":\"8495\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4b6a70aa-3123-4ac4-939d-00f81fde0e33\",\"team\":\"FA\",\"cbs_id\":\"1273027\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"7\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"OAK\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ejmanuel/2539228\",\"rotoworld_id\":\"8331\",\"stats_id\":\"26639\",\"position\":\"QB\",\"stats_global_id\":\"461919\",\"espn_id\":\"15803\",\"weight\":\"237\",\"id\":\"11154\",\"birthdate\":\"637822800\",\"draft_team\":\"BUF\",\"name\":\"Manuel, E.J.\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8749\",\"twitter_username\":\"EJManuel3\",\"sportsdata_id\":\"19d00799-4271-40ac-b5c4-4ea8b410a704\",\"team\":\"FA\",\"cbs_id\":\"1672655\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"landryjones/2539287\",\"rotoworld_id\":\"7446\",\"stats_id\":\"26738\",\"position\":\"QB\",\"stats_global_id\":\"447742\",\"espn_id\":\"15904\",\"weight\":\"225\",\"id\":\"11156\",\"birthdate\":\"607669200\",\"draft_team\":\"PIT\",\"name\":\"Jones, Landry\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"8748\",\"jersey\":\"2\",\"twitter_username\":\"LandryJones12\",\"sportsdata_id\":\"d4dd3d0b-5023-415d-ad15-94f294c561b1\",\"team\":\"FA\",\"cbs_id\":\"1630853\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tylerbray/2540173\",\"rotoworld_id\":\"8394\",\"stats_id\":\"27170\",\"position\":\"QB\",\"stats_global_id\":\"542809\",\"espn_id\":\"16252\",\"weight\":\"215\",\"id\":\"11170\",\"birthdate\":\"693810000\",\"draft_team\":\"FA\",\"name\":\"Bray, Tyler\",\"college\":\"Tennessee\",\"rotowire_id\":\"8621\",\"height\":\"78\",\"jersey\":\"9\",\"twitter_username\":\"tbrayvol8\",\"sportsdata_id\":\"b13ba4c3-5761-40fb-aa6a-935f09c39a6b\",\"team\":\"FA\",\"cbs_id\":\"1737685\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"ATL\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"christinemichael/2539322\",\"rotoworld_id\":\"8469\",\"stats_id\":\"26685\",\"position\":\"RB\",\"stats_global_id\":\"511398\",\"espn_id\":\"15855\",\"weight\":\"220\",\"id\":\"11179\",\"birthdate\":\"658126800\",\"draft_team\":\"SEA\",\"name\":\"Michael, Christine\",\"draft_pick\":\"30\",\"college\":\"Texas A&M\",\"height\":\"70\",\"rotowire_id\":\"8758\",\"jersey\":\"38\",\"twitter_username\":\"Cmike33\",\"sportsdata_id\":\"cf8e8522-6220-4612-a8a1-72c496dac536\",\"team\":\"FA\",\"cbs_id\":\"1700931\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"mikegillislee/2539663\",\"rotoworld_id\":\"8396\",\"stats_id\":\"26787\",\"position\":\"RB\",\"stats_global_id\":\"508875\",\"espn_id\":\"15952\",\"weight\":\"210\",\"id\":\"11180\",\"birthdate\":\"657435600\",\"draft_team\":\"MIA\",\"name\":\"Gillislee, Mike\",\"draft_pick\":\"31\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"8760\",\"jersey\":\"25\",\"twitter_username\":\"mikescogilly\",\"sportsdata_id\":\"d08da2a3-8296-4038-bb46-ab1feca4bbd4\",\"team\":\"FA\",\"cbs_id\":\"1691404\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kerwynnwilliams/2539980\",\"rotoworld_id\":\"8486\",\"stats_id\":\"26853\",\"position\":\"RB\",\"stats_global_id\":\"507683\",\"espn_id\":\"16024\",\"weight\":\"198\",\"id\":\"11185\",\"birthdate\":\"676443600\",\"draft_team\":\"IND\",\"name\":\"Williams, Kerwynn\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"height\":\"68\",\"rotowire_id\":\"8766\",\"jersey\":\"30\",\"sportsdata_id\":\"051ac116-6d32-4e77-91da-e0ce27d202da\",\"team\":\"FA\",\"cbs_id\":\"1691322\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"25\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"WAS\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"DEN\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"NYJ\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"KCC\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"eddielacy/2540168\",\"rotoworld_id\":\"8382\",\"stats_id\":\"26684\",\"position\":\"RB\",\"stats_global_id\":\"508645\",\"espn_id\":\"15848\",\"weight\":\"250\",\"id\":\"11201\",\"birthdate\":\"644302800\",\"draft_team\":\"GBP\",\"name\":\"Lacy, Eddie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"height\":\"71\",\"rotowire_id\":\"8620\",\"jersey\":\"27\",\"twitter_username\":\"Lil_Eazy_Ana_42\",\"sportsdata_id\":\"030f508b-be11-478e-bf68-d21e70fcff7b\",\"team\":\"FA\",\"cbs_id\":\"1691422\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"10\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"DAL\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"tavarresking/2539235\",\"rotoworld_id\":\"8569\",\"stats_id\":\"26784\",\"position\":\"WR\",\"stats_global_id\":\"449458\",\"espn_id\":\"15911\",\"weight\":\"192\",\"id\":\"11219\",\"birthdate\":\"647931600\",\"draft_team\":\"DEN\",\"name\":\"King, Tavarres\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8801\",\"jersey\":\"12\",\"twitter_username\":\"TKUnoDos\",\"sportsdata_id\":\"da3517d7-0002-48dc-a877-c299c25dfa41\",\"team\":\"FA\",\"cbs_id\":\"1620562\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"10\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"markuswheaton/2539291\",\"rotoworld_id\":\"8406\",\"stats_id\":\"26702\",\"position\":\"WR\",\"stats_global_id\":\"498191\",\"espn_id\":\"15873\",\"weight\":\"185\",\"id\":\"11229\",\"birthdate\":\"665902800\",\"draft_team\":\"PIT\",\"name\":\"Wheaton, Markus\",\"draft_pick\":\"17\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"8796\",\"jersey\":\"80\",\"twitter_username\":\"twheat002\",\"sportsdata_id\":\"f9036897-99d5-4d9a-8965-0c7e0f9e43bd\",\"team\":\"FA\",\"cbs_id\":\"1679942\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"HOU\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"NYG\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"11\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"SFO\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"86\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"WAS\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"dionsims/2540200\",\"rotoworld_id\":\"8532\",\"stats_id\":\"26729\",\"position\":\"TE\",\"stats_global_id\":\"511525\",\"espn_id\":\"15974\",\"weight\":\"268\",\"id\":\"11249\",\"birthdate\":\"666853200\",\"draft_team\":\"MIA\",\"name\":\"Sims, Dion\",\"draft_pick\":\"9\",\"college\":\"Michigan State\",\"height\":\"76\",\"rotowire_id\":\"8784\",\"jersey\":\"88\",\"twitter_username\":\"D_Sims80\",\"sportsdata_id\":\"9c04a540-cb7c-41dc-8e7c-50b7af29a3a2\",\"team\":\"FA\",\"cbs_id\":\"1700507\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"85\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"CIN\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"83\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"SFO\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"damontremoore/2540138\",\"rotoworld_id\":\"8424\",\"stats_id\":\"26704\",\"position\":\"DE\",\"stats_global_id\":\"558567\",\"espn_id\":\"15858\",\"weight\":\"260\",\"id\":\"11261\",\"birthdate\":\"716187600\",\"draft_team\":\"NYG\",\"name\":\"Moore, Damontre\",\"draft_pick\":\"19\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8654\",\"jersey\":\"92\",\"twitter_username\":\"tmoore94\",\"sportsdata_id\":\"03af0e0d-a443-4b09-9ab5-4f2695248346\",\"team\":\"SFO\",\"cbs_id\":\"1737651\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"97\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"OAK\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"SEA\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"datonejones/2539325\",\"rotoworld_id\":\"8426\",\"stats_id\":\"26649\",\"position\":\"DE\",\"stats_global_id\":\"461736\",\"espn_id\":\"15798\",\"weight\":\"285\",\"id\":\"11272\",\"birthdate\":\"648795600\",\"draft_team\":\"GBP\",\"name\":\"Jones, Datone\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"8660\",\"jersey\":\"96\",\"twitter_username\":\"IAM_Dat_One\",\"sportsdata_id\":\"3258dbca-9194-4fd7-bc2b-8440c73d0d9c\",\"team\":\"FA\",\"cbs_id\":\"1631952\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"IND\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DT\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"OAK\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"JAC\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"LAC\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"77\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"MIA\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"bennielogan/2540163\",\"rotoworld_id\":\"8439\",\"stats_id\":\"26690\",\"position\":\"DT\",\"stats_global_id\":\"498972\",\"espn_id\":\"15850\",\"weight\":\"315\",\"id\":\"11289\",\"birthdate\":\"630824400\",\"draft_team\":\"PHI\",\"name\":\"Logan, Bennie\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"8677\",\"jersey\":\"96\",\"twitter_username\":\"da_king_son18\",\"sportsdata_id\":\"52f75d86-f8fe-4411-a381-7675acd5bca9\",\"team\":\"FA\",\"cbs_id\":\"1664945\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"NOS\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"NYG\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"51\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"HOU\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"geraldhodges/2539293\",\"rotoworld_id\":\"8541\",\"stats_id\":\"26743\",\"position\":\"LB\",\"stats_global_id\":\"493471\",\"espn_id\":\"15977\",\"weight\":\"236\",\"id\":\"11303\",\"birthdate\":\"664088400\",\"draft_team\":\"MIN\",\"name\":\"Hodges, Gerald\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"8720\",\"jersey\":\"51\",\"twitter_username\":\"g_hodges6\",\"sportsdata_id\":\"b399ac02-6b52-4ae9-8eb0-7b3fffc29eea\",\"team\":\"FA\",\"cbs_id\":\"1664293\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"47\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"NOS\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"21\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"ATL\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"29\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"MIN\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"davidamerson/2540170\",\"rotoworld_id\":\"8449\",\"stats_id\":\"26674\",\"position\":\"CB\",\"stats_global_id\":\"557329\",\"espn_id\":\"15820\",\"weight\":\"205\",\"id\":\"11315\",\"birthdate\":\"692168400\",\"draft_team\":\"WAS\",\"name\":\"Amerson, David\",\"draft_pick\":\"19\",\"college\":\"North Carolina State\",\"height\":\"73\",\"rotowire_id\":\"8643\",\"jersey\":\"38\",\"twitter_username\":\"DavidAmerson1\",\"sportsdata_id\":\"2ba5bdad-0b7c-4637-89a3-5b7b34d215b0\",\"team\":\"FA\",\"cbs_id\":\"1737246\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"26\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"TEN\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"8\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"ATL\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"CAR\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"BAL\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2012\",\"rotoworld_id\":\"8318\",\"stats_id\":\"26596\",\"position\":\"RB\",\"stats_global_id\":\"381216\",\"espn_id\":\"15755\",\"weight\":\"205\",\"id\":\"11342\",\"draft_team\":\"FA\",\"birthdate\":\"604126800\",\"name\":\"Whittaker, Fozzy\",\"college\":\"Texas\",\"rotowire_id\":\"8083\",\"height\":\"70\",\"jersey\":\"43\",\"twitter_username\":\"FozzyWhitt\",\"sportsdata_id\":\"44ac9500-8fd8-4512-a5af-d63bc00aea7f\",\"team\":\"FA\",\"cbs_id\":\"1245251\"},{\"draft_year\":\"2013\",\"nfl_id\":\"marquetteking/2534819\",\"rotoworld_id\":\"8142\",\"stats_id\":\"26422\",\"position\":\"PN\",\"stats_global_id\":\"527640\",\"espn_id\":\"15389\",\"weight\":\"195\",\"id\":\"11345\",\"birthdate\":\"593845200\",\"draft_team\":\"FA\",\"name\":\"King, Marquette\",\"college\":\"Fort Valley State\",\"rotowire_id\":\"9083\",\"height\":\"72\",\"jersey\":\"1\",\"twitter_username\":\"MarquetteKing\",\"sportsdata_id\":\"ae103342-a4f0-4dbd-8c2a-63d9b159d9bd\",\"team\":\"FA\",\"cbs_id\":\"1977124\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"ATL\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"23\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"DET\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"8\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"NEP\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"j.j.wilcox/2540219\",\"rotoworld_id\":\"8515\",\"stats_id\":\"26703\",\"position\":\"S\",\"stats_global_id\":\"518009\",\"espn_id\":\"15874\",\"weight\":\"212\",\"id\":\"11356\",\"birthdate\":\"666507600\",\"draft_team\":\"DAL\",\"name\":\"Wilcox, J.J.\",\"draft_pick\":\"18\",\"college\":\"Georgia Southern\",\"height\":\"72\",\"rotowire_id\":\"8888\",\"jersey\":\"29\",\"twitter_username\":\"TheRealJJWilcox\",\"sportsdata_id\":\"f4ebaa64-aebe-4a32-b11e-f4f47f511770\",\"team\":\"ATL\",\"cbs_id\":\"1705885\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"WAS\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"21\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"NEP\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"shamarkothomas/2539937\",\"rotoworld_id\":\"8536\",\"stats_id\":\"26734\",\"position\":\"S\",\"stats_global_id\":\"501862\",\"espn_id\":\"15992\",\"weight\":\"205\",\"id\":\"11362\",\"birthdate\":\"667285200\",\"draft_team\":\"PIT\",\"name\":\"Thomas, Shamarko\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"height\":\"69\",\"rotowire_id\":\"8780\",\"jersey\":\"38\",\"twitter_username\":\"shamarko21ya\",\"sportsdata_id\":\"ecb0a97f-f70b-4ea7-a741-e1d4e764edfb\",\"team\":\"FA\",\"cbs_id\":\"1682114\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"CIN\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"stevenmeans/2541310\",\"rotoworld_id\":\"8557\",\"stats_id\":\"26770\",\"position\":\"DE\",\"stats_global_id\":\"466334\",\"espn_id\":\"15936\",\"weight\":\"263\",\"id\":\"11374\",\"birthdate\":\"628837200\",\"draft_team\":\"TBB\",\"name\":\"Means, Steven\",\"draft_pick\":\"14\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"8974\",\"jersey\":\"56\",\"sportsdata_id\":\"c639a18a-ee1a-46ed-8707-580711fa33db\",\"team\":\"ATL\",\"cbs_id\":\"2057662\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"53\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"NOS\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"SEA\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"SEA\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DET\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"calebsturgis/2539637\",\"rotoworld_id\":\"8573\",\"stats_id\":\"26789\",\"position\":\"PK\",\"stats_global_id\":\"450957\",\"espn_id\":\"15918\",\"weight\":\"192\",\"id\":\"11384\",\"birthdate\":\"618642000\",\"draft_team\":\"MIA\",\"name\":\"Sturgis, Caleb\",\"draft_pick\":\"33\",\"college\":\"Florida\",\"height\":\"69\",\"rotowire_id\":\"8898\",\"jersey\":\"6\",\"twitter_username\":\"CalebSturgis1\",\"sportsdata_id\":\"596c4000-ede5-45b0-8336-33efeb686d2b\",\"team\":\"FA\",\"cbs_id\":\"1620544\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"85\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DE\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"CAR\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"tommybohanon/2540225\",\"rotoworld_id\":\"8614\",\"stats_id\":\"26838\",\"position\":\"RB\",\"stats_global_id\":\"496208\",\"espn_id\":\"15973\",\"weight\":\"246\",\"id\":\"11408\",\"birthdate\":\"652942800\",\"draft_team\":\"NYJ\",\"name\":\"Bohanon, Tommy\",\"draft_pick\":\"9\",\"college\":\"Wake Forest\",\"height\":\"73\",\"rotowire_id\":\"8987\",\"jersey\":\"48\",\"twitter_username\":\"TommyBo40\",\"sportsdata_id\":\"97c96dce-9b33-4d0e-ba01-5eb629192d19\",\"team\":\"FA\",\"cbs_id\":\"1664304\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"charlesjohnson/2541147\",\"rotoworld_id\":\"8615\",\"stats_id\":\"26839\",\"position\":\"WR\",\"stats_global_id\":\"386696\",\"espn_id\":\"15885\",\"weight\":\"215\",\"id\":\"11409\",\"birthdate\":\"604558800\",\"draft_team\":\"GBP\",\"name\":\"Johnson, Charles\",\"draft_pick\":\"10\",\"college\":\"Grand Valley St\",\"height\":\"74\",\"rotowire_id\":\"8913\",\"jersey\":\"84\",\"sportsdata_id\":\"be08946a-31ea-46da-b572-19c1e1948d14\",\"team\":\"PHI\",\"cbs_id\":\"2057693\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"CHI\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"LB\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"ATL\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"marcuscooper/2541202\",\"rotoworld_id\":\"8641\",\"stats_id\":\"26875\",\"position\":\"CB\",\"stats_global_id\":\"464778\",\"espn_id\":\"15888\",\"weight\":\"197\",\"id\":\"11428\",\"birthdate\":\"633848400\",\"draft_team\":\"SFO\",\"name\":\"Cooper, Marcus\",\"draft_pick\":\"46\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"9082\",\"jersey\":\"31\",\"sportsdata_id\":\"38709da2-bd62-45f9-a7cd-f209879aca81\",\"team\":\"FA\",\"cbs_id\":\"2057741\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bennycunningham/2541544\",\"rotoworld_id\":\"8953\",\"stats_id\":\"27167\",\"position\":\"RB\",\"stats_global_id\":\"499493\",\"espn_id\":\"16055\",\"weight\":\"218\",\"id\":\"11432\",\"birthdate\":\"647326800\",\"draft_team\":\"FA\",\"name\":\"Cunningham, Benny\",\"college\":\"Middle Tennessee St\",\"rotowire_id\":\"9062\",\"height\":\"70\",\"jersey\":\"29\",\"twitter_username\":\"BCunningham36\",\"sportsdata_id\":\"06787c1d-f02b-4217-9152-c269e826928a\",\"team\":\"FA\",\"cbs_id\":\"2058327\"},{\"draft_year\":\"2013\",\"nfl_id\":\"marqueisgray/2540259\",\"rotoworld_id\":\"8679\",\"stats_id\":\"27213\",\"position\":\"TE\",\"stats_global_id\":\"464295\",\"espn_id\":\"16323\",\"weight\":\"260\",\"id\":\"11434\",\"draft_team\":\"FA\",\"birthdate\":\"657954000\",\"name\":\"Gray, MarQueis\",\"college\":\"Minnesota\",\"rotowire_id\":\"8980\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"fda00e5c-b7df-487a-9a24-5e4087c575e1\",\"team\":\"FA\",\"cbs_id\":\"1631039\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"88\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CLE\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"SEA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"NYJ\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"CIN\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"DAL\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"OAK\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"HOU\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"ATL\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"23\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"LAR\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"TEN\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"JAC\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"BAL\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"CAR\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"SEA\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derrickcoleman/2534871\",\"rotoworld_id\":\"8019\",\"stats_id\":\"26299\",\"position\":\"RB\",\"stats_global_id\":\"461705\",\"espn_id\":\"15351\",\"weight\":\"233\",\"id\":\"11524\",\"draft_team\":\"FA\",\"birthdate\":\"656226000\",\"name\":\"Coleman, Derrick\",\"college\":\"UCLA\",\"rotowire_id\":\"8247\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"e0a63251-5428-43a1-88c1-c000215ac5ce\",\"team\":\"FA\",\"cbs_id\":\"1977109\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"0\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"DET\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshmartin/2541864\",\"rotoworld_id\":\"8962\",\"stats_id\":\"27179\",\"position\":\"LB\",\"stats_global_id\":\"500943\",\"espn_id\":\"16268\",\"weight\":\"245\",\"id\":\"11542\",\"draft_team\":\"FA\",\"birthdate\":\"689490000\",\"name\":\"Martin, Josh\",\"college\":\"Columbia\",\"rotowire_id\":\"9110\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"f41be233-94ee-4d66-bb7b-aabb9a9509e8\",\"team\":\"NOS\",\"cbs_id\":\"2060078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"DAL\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"JAC\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brittangolden/2535988\",\"rotoworld_id\":\"7708\",\"stats_id\":\"25970\",\"position\":\"WR\",\"stats_global_id\":\"615893\",\"espn_id\":\"15564\",\"weight\":\"196\",\"id\":\"11570\",\"draft_team\":\"FA\",\"birthdate\":\"585378000\",\"name\":\"Golden, Brittan\",\"college\":\"West Texas A&M\",\"rotowire_id\":\"8260\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"5d0270d1-8172-4403-a2b3-69055d0bcbb1\",\"team\":\"FA\",\"cbs_id\":\"1979368\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"NYJ\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickwilliams/2540279\",\"rotoworld_id\":\"8982\",\"stats_id\":\"27201\",\"position\":\"WR\",\"stats_global_id\":\"511823\",\"espn_id\":\"16345\",\"weight\":\"184\",\"id\":\"11600\",\"draft_team\":\"FA\",\"birthdate\":\"659336400\",\"name\":\"Williams, Nick\",\"college\":\"Connecticut\",\"rotowire_id\":\"9037\",\"height\":\"70\",\"jersey\":\"86\",\"sportsdata_id\":\"c87f0526-a85d-439d-a447-070c66ede612\",\"team\":\"FA\",\"cbs_id\":\"2058366\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deshawnshead/2535609\",\"rotoworld_id\":\"7730\",\"stats_id\":\"25994\",\"position\":\"CB\",\"stats_global_id\":\"389514\",\"espn_id\":\"15419\",\"weight\":\"212\",\"id\":\"11605\",\"birthdate\":\"583477200\",\"draft_team\":\"FA\",\"name\":\"Shead, Deshawn\",\"college\":\"Portland State\",\"rotowire_id\":\"8596\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"dshead24\",\"sportsdata_id\":\"588022c3-f9c6-4f30-b4ea-a264f99fc997\",\"team\":\"FA\",\"cbs_id\":\"1977775\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"NYG\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"OAK\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"HOU\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9295\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gruden, Jay\",\"stats_global_id\":\"0\",\"id\":\"11636\",\"team\":\"FA\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"NOS\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"johnnymanziel/2543462\",\"rotoworld_id\":\"9271\",\"stats_id\":\"27550\",\"position\":\"QB\",\"stats_global_id\":\"593578\",\"espn_id\":\"16736\",\"weight\":\"210\",\"id\":\"11641\",\"birthdate\":\"723618000\",\"draft_team\":\"CLE\",\"name\":\"Manziel, Johnny\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"height\":\"72\",\"rotowire_id\":\"9246\",\"jersey\":\"2\",\"twitter_username\":\"JManziel2\",\"sportsdata_id\":\"7ebbfdef-1185-4896-a323-e6d5669a8345\",\"team\":\"FA\",\"cbs_id\":\"1824921\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"LAR\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"OAK\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"DET\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"tomsavage/2543640\",\"rotoworld_id\":\"9418\",\"stats_id\":\"27663\",\"position\":\"QB\",\"stats_global_id\":\"511883\",\"espn_id\":\"16943\",\"weight\":\"230\",\"id\":\"11649\",\"birthdate\":\"641106000\",\"draft_team\":\"HOU\",\"name\":\"Savage, Tom\",\"draft_pick\":\"35\",\"college\":\"Pittsburgh\",\"height\":\"76\",\"rotowire_id\":\"9701\",\"jersey\":\"3\",\"twitter_username\":\"tomsavage03\",\"sportsdata_id\":\"ba2e7ff8-ed39-4fd1-85e3-d263a946a212\",\"team\":\"FA\",\"cbs_id\":\"2129494\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"charlessims/2543770\",\"rotoworld_id\":\"9425\",\"stats_id\":\"27597\",\"position\":\"RB\",\"stats_global_id\":\"507746\",\"espn_id\":\"16749\",\"weight\":\"211\",\"id\":\"11656\",\"birthdate\":\"653720400\",\"draft_team\":\"TBB\",\"name\":\"Sims, Charles\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"9519\",\"jersey\":\"34\",\"twitter_username\":\"csims34\",\"sportsdata_id\":\"4cb511e9-4d43-413e-998c-2778cc7786fe\",\"team\":\"FA\",\"cbs_id\":\"1691483\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"34\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"HOU\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"5\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"ATL\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"OAK\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"11\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"JAC\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"12\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"LAR\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"SFO\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"FA\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"WAS\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"IND\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"IND\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"CHI\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"SEA\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"konyealy/2543484\",\"rotoworld_id\":\"9389\",\"stats_id\":\"27588\",\"position\":\"DE\",\"stats_global_id\":\"553228\",\"espn_id\":\"16773\",\"weight\":\"275\",\"id\":\"11708\",\"birthdate\":\"693291600\",\"draft_team\":\"CAR\",\"name\":\"Ealy, Kony\",\"draft_pick\":\"28\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"9407\",\"jersey\":\"96\",\"twitter_username\":\"EalyKony\",\"sportsdata_id\":\"dfce3ced-01eb-4558-ab85-9c427cf1807d\",\"team\":\"FA\",\"cbs_id\":\"1737527\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"dominiqueeasley/2543487\",\"rotoworld_id\":\"9606\",\"stats_id\":\"27557\",\"position\":\"LB\",\"stats_global_id\":\"557185\",\"espn_id\":\"16721\",\"weight\":\"263\",\"id\":\"11710\",\"birthdate\":\"698907600\",\"draft_team\":\"NEP\",\"name\":\"Easley, Dominique\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"9396\",\"jersey\":\"91\",\"twitter_username\":\"DominiqueEasley\",\"sportsdata_id\":\"c5573e07-97a8-4a0d-a325-753af5e564f1\",\"team\":\"FA\",\"cbs_id\":\"1737266\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"CHI\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"93\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"PHI\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"PIT\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"PIT\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"NEP\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"51\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"21\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"CIN\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"WAS\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"CHI\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"S\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"OAK\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewest/2543664\",\"rotoworld_id\":\"9406\",\"stats_id\":\"27622\",\"position\":\"RB\",\"stats_global_id\":\"595842\",\"espn_id\":\"16783\",\"weight\":\"225\",\"id\":\"11746\",\"birthdate\":\"664434000\",\"draft_team\":\"CLE\",\"name\":\"West, Terrance\",\"draft_pick\":\"30\",\"college\":\"Towson\",\"height\":\"70\",\"rotowire_id\":\"9282\",\"jersey\":\"38\",\"twitter_username\":\"TerranceWestBWI\",\"sportsdata_id\":\"46d5a560-8260-44d7-a8db-8adb6fd8f2e9\",\"team\":\"FA\",\"cbs_id\":\"1829652\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandoncoleman/2550328\",\"rotoworld_id\":\"9412\",\"stats_id\":\"27921\",\"position\":\"WR\",\"stats_global_id\":\"556468\",\"espn_id\":\"17127\",\"weight\":\"225\",\"id\":\"11754\",\"draft_team\":\"FA\",\"birthdate\":\"709189200\",\"name\":\"Coleman, Brandon\",\"college\":\"Rutgers\",\"rotowire_id\":\"9223\",\"height\":\"78\",\"jersey\":\"16\",\"sportsdata_id\":\"07169571-5184-43ea-aa36-9a283b276b94\",\"team\":\"FA\",\"cbs_id\":\"1737368\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"NYG\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"2\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"marcussmith/2543725\",\"rotoworld_id\":\"9554\",\"stats_id\":\"27554\",\"position\":\"LB\",\"stats_global_id\":\"553701\",\"espn_id\":\"16712\",\"weight\":\"257\",\"id\":\"11766\",\"birthdate\":\"702018000\",\"draft_team\":\"PHI\",\"name\":\"Smith, Marcus\",\"draft_pick\":\"26\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"9340\",\"jersey\":\"58\",\"sportsdata_id\":\"46aa49f6-6720-49dd-a13b-3c055d304fd9\",\"team\":\"FA\",\"cbs_id\":\"1760028\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"NYG\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"CB\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"CLE\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jaybromley/2543860\",\"rotoworld_id\":\"9588\",\"stats_id\":\"27602\",\"position\":\"DT\",\"stats_global_id\":\"558716\",\"espn_id\":\"16776\",\"weight\":\"314\",\"id\":\"11774\",\"birthdate\":\"706165200\",\"draft_team\":\"NYG\",\"name\":\"Bromley, Jay\",\"draft_pick\":\"10\",\"college\":\"Syracuse\",\"height\":\"75\",\"rotowire_id\":\"9404\",\"jersey\":\"90\",\"twitter_username\":\"JayBrom96\",\"sportsdata_id\":\"8fd4379f-242a-4388-ae91-5b99acbb1bd8\",\"team\":\"FA\",\"cbs_id\":\"2129411\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"JAC\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"NYG\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"28\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"willclarke/2543881\",\"rotoworld_id\":\"9597\",\"stats_id\":\"27616\",\"position\":\"DE\",\"stats_global_id\":\"513832\",\"espn_id\":\"16758\",\"weight\":\"275\",\"id\":\"11782\",\"birthdate\":\"673333200\",\"draft_team\":\"CIN\",\"name\":\"Clarke, Will\",\"draft_pick\":\"24\",\"college\":\"West Virginia\",\"height\":\"78\",\"rotowire_id\":\"9411\",\"jersey\":\"95\",\"twitter_username\":\"W_Clarke98\",\"sportsdata_id\":\"bbb3b4cf-0ba1-4d45-8650-9f8824d3781d\",\"team\":\"FA\",\"cbs_id\":\"1700342\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"82\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"PHI\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"LAC\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"78\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"DE\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"91\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"ARI\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"CAR\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"BUF\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DE\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"MIA\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"IND\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"S\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"57\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"CHI\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"OAK\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"96\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"GBP\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"benebenwikere/2543855\",\"rotoworld_id\":\"9579\",\"stats_id\":\"27676\",\"position\":\"CB\",\"stats_global_id\":\"558950\",\"espn_id\":\"16872\",\"weight\":\"195\",\"id\":\"11815\",\"birthdate\":\"683874000\",\"draft_team\":\"CAR\",\"name\":\"Benwikere, Bene\",\"draft_pick\":\"8\",\"college\":\"San Jose State\",\"height\":\"72\",\"rotowire_id\":\"9618\",\"jersey\":\"46\",\"twitter_username\":\"JustBeneB\",\"sportsdata_id\":\"4c0a966e-797d-4e60-8ba9-a67b5749ec5f\",\"team\":\"FA\",\"cbs_id\":\"2129519\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"NYJ\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"natberhe/2543643\",\"rotoworld_id\":\"9580\",\"stats_id\":\"27680\",\"position\":\"S\",\"stats_global_id\":\"512382\",\"espn_id\":\"16850\",\"weight\":\"195\",\"id\":\"11817\",\"birthdate\":\"678776400\",\"draft_team\":\"NYG\",\"name\":\"Berhe, Nat\",\"draft_pick\":\"12\",\"college\":\"San Diego State\",\"height\":\"71\",\"rotowire_id\":\"9313\",\"jersey\":\"31\",\"twitter_username\":\"NatBerhe\",\"sportsdata_id\":\"aa80f701-cce8-4136-b0cb-965fb8c90519\",\"team\":\"FA\",\"cbs_id\":\"2129524\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"caraunreid/2543748\",\"rotoworld_id\":\"9672\",\"stats_id\":\"27686\",\"position\":\"DT\",\"stats_global_id\":\"521309\",\"espn_id\":\"16853\",\"weight\":\"292\",\"id\":\"11820\",\"birthdate\":\"690872400\",\"draft_team\":\"DET\",\"name\":\"Reid, Caraun\",\"draft_pick\":\"18\",\"college\":\"Princeton\",\"height\":\"74\",\"rotowire_id\":\"9395\",\"jersey\":\"75\",\"twitter_username\":\"ChopReid\",\"sportsdata_id\":\"aa82ed23-934e-451f-ac47-65c63a84bf16\",\"team\":\"ARI\",\"cbs_id\":\"1752983\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"FA\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"DET\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"kennethacker/2549981\",\"rotoworld_id\":\"9684\",\"stats_id\":\"27708\",\"position\":\"CB\",\"stats_global_id\":\"559024\",\"espn_id\":\"16914\",\"weight\":\"195\",\"id\":\"11832\",\"birthdate\":\"697352400\",\"draft_team\":\"SFO\",\"name\":\"Acker, Kenneth\",\"draft_pick\":\"4\",\"college\":\"SMU\",\"height\":\"72\",\"rotowire_id\":\"9768\",\"jersey\":\"33\",\"sportsdata_id\":\"101b9211-4f92-4024-8978-b4df2eec3c74\",\"team\":\"FA\",\"cbs_id\":\"2129558\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"NYJ\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"bennettjackson/2543834\",\"rotoworld_id\":\"9687\",\"stats_id\":\"27715\",\"position\":\"S\",\"stats_global_id\":\"560847\",\"espn_id\":\"16879\",\"weight\":\"192\",\"id\":\"11837\",\"birthdate\":\"684997200\",\"draft_team\":\"NYG\",\"name\":\"Jackson, Bennett\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9671\",\"jersey\":\"33\",\"twitter_username\":\"B_Jax2\",\"sportsdata_id\":\"144ef260-a22e-45df-9bbe-52a11f9188ba\",\"team\":\"NYJ\",\"cbs_id\":\"1749630\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"e.j.gaines/2543823\",\"rotoworld_id\":\"9619\",\"stats_id\":\"27716\",\"position\":\"CB\",\"stats_global_id\":\"553230\",\"espn_id\":\"16898\",\"weight\":\"190\",\"id\":\"11838\",\"birthdate\":\"698821200\",\"draft_team\":\"STL\",\"name\":\"Gaines, E.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"70\",\"rotowire_id\":\"9335\",\"jersey\":\"26\",\"twitter_username\":\"GainesTrain_31\",\"sportsdata_id\":\"ab7df007-37bf-407b-b77d-0e719c80f065\",\"team\":\"FA\",\"cbs_id\":\"1737669\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"zachmoore/2543796\",\"rotoworld_id\":\"9694\",\"stats_id\":\"27726\",\"position\":\"DE\",\"stats_global_id\":\"824041\",\"espn_id\":\"16959\",\"weight\":\"275\",\"id\":\"11845\",\"birthdate\":\"652510800\",\"draft_team\":\"NEP\",\"name\":\"Moore, Zach\",\"draft_pick\":\"22\",\"college\":\"Concordia\",\"height\":\"78\",\"rotowire_id\":\"9682\",\"jersey\":\"56\",\"twitter_username\":\"zachmoore_90\",\"sportsdata_id\":\"63175907-f9fc-4a3a-a376-d8e3a76d7964\",\"team\":\"FA\",\"cbs_id\":\"2129589\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"NYJ\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"marquisflowers/2549896\",\"rotoworld_id\":\"9702\",\"stats_id\":\"27740\",\"position\":\"LB\",\"stats_global_id\":\"542297\",\"espn_id\":\"16924\",\"weight\":\"245\",\"id\":\"11852\",\"birthdate\":\"698216400\",\"draft_team\":\"CIN\",\"name\":\"Flowers, Marquis\",\"draft_pick\":\"36\",\"college\":\"Arizona\",\"height\":\"74\",\"rotowire_id\":\"9775\",\"jersey\":\"50\",\"twitter_username\":\"MrHitThat_53\",\"sportsdata_id\":\"ece6cc68-6834-4c1a-ab97-03d327ea132d\",\"team\":\"FA\",\"cbs_id\":\"2129582\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"CLE\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"rotoworld_id\":\"9628\",\"stats_id\":\"27744\",\"position\":\"S\",\"stats_global_id\":\"555644\",\"espn_id\":\"10411\",\"weight\":\"195\",\"id\":\"11855\",\"birthdate\":\"707202000\",\"draft_team\":\"HOU\",\"name\":\"Hal, Dre\",\"draft_pick\":\"1\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"9676\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"513caa63-d30d-4cde-b605-8cf825a4ef27\",\"team\":\"HOU\",\"cbs_id\":\"2129728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"michaelcampanaro/2550163\",\"rotoworld_id\":\"9594\",\"stats_id\":\"27746\",\"position\":\"WR\",\"stats_global_id\":\"500653\",\"espn_id\":\"16832\",\"weight\":\"191\",\"id\":\"11857\",\"birthdate\":\"664779600\",\"draft_team\":\"BAL\",\"name\":\"Campanaro, Michael\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"height\":\"69\",\"rotowire_id\":\"9468\",\"jersey\":\"10\",\"twitter_username\":\"MikeCamp_12\",\"sportsdata_id\":\"742796c3-a092-49ab-9b24-dbc224fd11a1\",\"team\":\"FA\",\"cbs_id\":\"1682076\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, Travis\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"CLE\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"91\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"TBB\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"jeffjanis/2543750\",\"rotoworld_id\":\"9719\",\"stats_id\":\"27764\",\"position\":\"WR\",\"stats_global_id\":\"794243\",\"espn_id\":\"16960\",\"weight\":\"219\",\"id\":\"11870\",\"birthdate\":\"676443600\",\"draft_team\":\"GBP\",\"name\":\"Janis, Jeff\",\"draft_pick\":\"21\",\"college\":\"Saginaw Valley\",\"height\":\"75\",\"rotowire_id\":\"9466\",\"jersey\":\"13\",\"twitter_username\":\"jrjanis\",\"sportsdata_id\":\"7b1c1855-fc6d-42aa-ac3e-588e82333146\",\"team\":\"FA\",\"cbs_id\":\"2028397\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DT\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"DEN\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"TEN\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kapribibbs/2550542\",\"rotoworld_id\":\"9581\",\"stats_id\":\"27821\",\"position\":\"RB\",\"stats_global_id\":\"590943\",\"espn_id\":\"16969\",\"weight\":\"203\",\"id\":\"11895\",\"draft_team\":\"FA\",\"birthdate\":\"726642000\",\"name\":\"Bibbs, Kapri\",\"college\":\"Colorado State\",\"rotowire_id\":\"9238\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4402b8d5-d6bf-43d0-9198-651506abba76\",\"team\":\"FA\",\"cbs_id\":\"2130833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"erikswoope/2550405\",\"rotoworld_id\":\"9792\",\"stats_id\":\"27914\",\"position\":\"TE\",\"stats_global_id\":\"550290\",\"espn_id\":\"17091\",\"weight\":\"255\",\"id\":\"11904\",\"draft_team\":\"FA\",\"birthdate\":\"705301200\",\"name\":\"Swoope, Erik\",\"college\":\"Miami\",\"rotowire_id\":\"9808\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"947e7faa-e8be-4603-829c-b57e4247ccbf\",\"team\":\"FA\",\"cbs_id\":\"2130326\"},{\"draft_year\":\"2014\",\"nfl_id\":\"marcuslucas/2550581\",\"rotoworld_id\":\"9764\",\"stats_id\":\"27941\",\"position\":\"TE\",\"stats_global_id\":\"553236\",\"espn_id\":\"17382\",\"weight\":\"250\",\"id\":\"11917\",\"draft_team\":\"FA\",\"birthdate\":\"699426000\",\"name\":\"Lucas, Marcus\",\"college\":\"Missouri\",\"rotowire_id\":\"9475\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"0fb168d1-c720-4e22-9e20-8b6432131548\",\"team\":\"FA\",\"cbs_id\":\"2130818\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"ryanhewitt/2550206\",\"rotoworld_id\":\"9985\",\"stats_id\":\"28021\",\"position\":\"RB\",\"stats_global_id\":\"503183\",\"espn_id\":\"17169\",\"weight\":\"255\",\"id\":\"11927\",\"draft_team\":\"FA\",\"birthdate\":\"664693200\",\"name\":\"Hewitt, Ryan\",\"college\":\"Stanford\",\"rotowire_id\":\"9654\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"fa26e15f-2375-4acc-aaae-cf32cfe4bc3e\",\"team\":\"FA\",\"cbs_id\":\"2130137\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"FA\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandenoliver/2550658\",\"rotoworld_id\":\"10198\",\"stats_id\":\"28272\",\"position\":\"RB\",\"stats_global_id\":\"506492\",\"espn_id\":\"17452\",\"weight\":\"208\",\"id\":\"11941\",\"draft_team\":\"FA\",\"birthdate\":\"673592400\",\"name\":\"Oliver, Branden\",\"college\":\"Buffalo\",\"rotowire_id\":\"9550\",\"height\":\"68\",\"jersey\":\"40\",\"sportsdata_id\":\"7dac43ce-3a74-4033-b63f-bf9171a24a55\",\"team\":\"FA\",\"cbs_id\":\"2132786\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"5\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"FA\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10025\",\"stats_id\":\"28075\",\"position\":\"LB\",\"stats_global_id\":\"559263\",\"espn_id\":\"16991\",\"weight\":\"255\",\"id\":\"11954\",\"draft_team\":\"FA\",\"birthdate\":\"689835600\",\"name\":\"Elliott, Jayrone\",\"college\":\"Toledo\",\"rotowire_id\":\"9955\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"4642915e-8c37-4692-9169-fa210b6efc8c\",\"team\":\"FA\",\"cbs_id\":\"2130181\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brockcoyle/2550285\",\"rotoworld_id\":\"9809\",\"stats_id\":\"27801\",\"position\":\"LB\",\"stats_global_id\":\"518247\",\"espn_id\":\"16983\",\"weight\":\"245\",\"id\":\"11955\",\"draft_team\":\"FA\",\"birthdate\":\"655707600\",\"name\":\"Coyle, Brock\",\"college\":\"Montana\",\"rotowire_id\":\"9946\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"b1f8c22c-e516-4fdc-9ecd-d2bd1e9a1f36\",\"team\":\"FA\",\"cbs_id\":\"2130245\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"16\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"IND\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chandlercatanzaro/2550325\",\"rotoworld_id\":\"10045\",\"stats_id\":\"28103\",\"position\":\"PK\",\"stats_global_id\":\"522233\",\"espn_id\":\"16976\",\"weight\":\"200\",\"id\":\"11960\",\"draft_team\":\"FA\",\"birthdate\":\"667544400\",\"name\":\"Catanzaro, Chandler\",\"college\":\"Clemson\",\"rotowire_id\":\"9845\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"team\":\"FA\",\"cbs_id\":\"2130276\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"BUF\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"FA\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"tylerpatmon/2550659\",\"rotoworld_id\":\"10196\",\"stats_id\":\"28270\",\"position\":\"CB\",\"stats_global_id\":\"497255\",\"espn_id\":\"17450\",\"weight\":\"188\",\"id\":\"11974\",\"draft_team\":\"FA\",\"birthdate\":\"664866000\",\"name\":\"Patmon, Tyler\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"9830\",\"height\":\"70\",\"jersey\":\"8\",\"sportsdata_id\":\"10af66eb-88ac-456d-8d47-d7c1e19c8b30\",\"team\":\"FA\",\"cbs_id\":\"2132784\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"CHI\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2014\",\"nfl_id\":\"orleansdarkwa/2550481\",\"rotoworld_id\":\"10102\",\"stats_id\":\"28169\",\"position\":\"RB\",\"stats_global_id\":\"546645\",\"espn_id\":\"17331\",\"weight\":\"219\",\"id\":\"11977\",\"draft_team\":\"FA\",\"birthdate\":\"699253200\",\"name\":\"Darkwa, Orleans\",\"college\":\"Tulane\",\"rotowire_id\":\"9551\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"6fa02dfe-225c-4d0f-9d09-6a6ec31637a4\",\"team\":\"FA\",\"cbs_id\":\"2130677\"},{\"draft_year\":\"2013\",\"nfl_id\":\"coltonschmidt/2542246\",\"rotoworld_id\":\"9227\",\"stats_id\":\"27459\",\"position\":\"PN\",\"stats_global_id\":\"515262\",\"espn_id\":\"16623\",\"weight\":\"224\",\"id\":\"11980\",\"draft_team\":\"FA\",\"birthdate\":\"657003600\",\"name\":\"Schmidt, Colton\",\"college\":\"UC Davis\",\"rotowire_id\":\"9027\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"ca668ed5-05b3-41da-a3a4-6fa8982968f6\",\"team\":\"FA\",\"cbs_id\":\"2071267\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DE\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"ARI\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2013\",\"rotoworld_id\":\"8020\",\"stats_id\":\"26300\",\"position\":\"DE\",\"stats_global_id\":\"463445\",\"espn_id\":\"15256\",\"weight\":\"260\",\"id\":\"11994\",\"draft_team\":\"FA\",\"birthdate\":\"637736400\",\"name\":\"Smith, Jacquies\",\"college\":\"Missouri\",\"rotowire_id\":\"8151\",\"height\":\"74\",\"jersey\":\"93\",\"sportsdata_id\":\"3add1dd8-32aa-44a5-b69a-b0ad2eace07b\",\"team\":\"FA\",\"cbs_id\":\"1630792\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9903\",\"stats_id\":\"27923\",\"position\":\"LB\",\"stats_global_id\":\"498200\",\"espn_id\":\"17141\",\"weight\":\"253\",\"id\":\"11996\",\"draft_team\":\"FA\",\"birthdate\":\"619333200\",\"name\":\"Edebali, Kasim\",\"college\":\"Boston College\",\"rotowire_id\":\"9378\",\"height\":\"74\",\"jersey\":\"66\",\"sportsdata_id\":\"25a958c9-4035-43ad-8c9c-1309ea592e66\",\"team\":\"FA\",\"cbs_id\":\"1679689\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9944\",\"stats_id\":\"27972\",\"position\":\"DT\",\"stats_global_id\":\"794258\",\"espn_id\":\"17285\",\"weight\":\"287\",\"id\":\"12002\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"Westbrooks, Ethan\",\"college\":\"West Texas A&M\",\"rotowire_id\":\"9685\",\"height\":\"76\",\"jersey\":\"63\",\"sportsdata_id\":\"bb29cf6c-17a4-4106-9b9c-47d2d9c0e6b9\",\"team\":\"FA\",\"cbs_id\":\"2130607\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"CIN\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rashadross/2541940\",\"rotoworld_id\":\"9080\",\"stats_id\":\"27305\",\"position\":\"WR\",\"stats_global_id\":\"598945\",\"espn_id\":\"16566\",\"weight\":\"180\",\"id\":\"12038\",\"draft_team\":\"FA\",\"birthdate\":\"633934800\",\"name\":\"Ross, Rashad\",\"college\":\"Arizona State\",\"rotowire_id\":\"9759\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"a55c773c-1ce6-4d0f-a800-768575d74121\",\"team\":\"FA\",\"cbs_id\":\"2060281\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"nfl_id\":\"freddiemartino/2550223\",\"rotoworld_id\":\"10016\",\"stats_id\":\"28060\",\"position\":\"WR\",\"stats_global_id\":\"562535\",\"espn_id\":\"17205\",\"weight\":\"195\",\"id\":\"12062\",\"draft_team\":\"FA\",\"birthdate\":\"684219600\",\"name\":\"Martino, Freddie\",\"college\":\"North Greenville\",\"rotowire_id\":\"9854\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"88eda217-d9ad-4abb-bcc1-2cbfe2a20b4d\",\"team\":\"FA\",\"cbs_id\":\"2130097\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9785\",\"stats_id\":\"28153\",\"position\":\"S\",\"stats_global_id\":\"543366\",\"espn_id\":\"17317\",\"weight\":\"201\",\"id\":\"12067\",\"draft_team\":\"FA\",\"birthdate\":\"709275600\",\"name\":\"Ladler, Kenny\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"9299\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"d452a634-8f68-4bae-808d-5ce4d9630970\",\"team\":\"WAS\",\"cbs_id\":\"1752310\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"CLE\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"0\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"DEN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"LAC\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"marcuswilliams/2550605\",\"rotoworld_id\":\"10133\",\"stats_id\":\"28204\",\"position\":\"CB\",\"stats_global_id\":\"559857\",\"espn_id\":\"2508192\",\"weight\":\"196\",\"id\":\"12090\",\"draft_team\":\"FA\",\"birthdate\":\"669790800\",\"name\":\"Williams, Marcus\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10001\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"02eb6a66-8d0d-42a4-a2c9-10e028908910\",\"team\":\"FA\",\"cbs_id\":\"2130851\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"OAK\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jeromecunningham/2551359\",\"rotoworld_id\":\"10270\",\"stats_id\":\"28348\",\"position\":\"TE\",\"stats_global_id\":\"512900\",\"espn_id\":\"2476373\",\"weight\":\"254\",\"id\":\"12124\",\"draft_team\":\"FA\",\"birthdate\":\"675147600\",\"name\":\"Cunningham, Jerome\",\"college\":\"Southern Connecticut St\",\"rotowire_id\":\"9920\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"2a1658c4-c9fd-4a98-b619-74ec35e30bf5\",\"team\":\"WAS\",\"cbs_id\":\"2141500\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"DET\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"NYG\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"3\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"TBB\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"TEN\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"brycepetty/2552369\",\"rotoworld_id\":\"10419\",\"stats_id\":\"28491\",\"position\":\"QB\",\"stats_global_id\":\"503511\",\"espn_id\":\"2466005\",\"weight\":\"226\",\"id\":\"12144\",\"birthdate\":\"675666000\",\"draft_team\":\"NYJ\",\"name\":\"Petty, Bryce\",\"draft_pick\":\"4\",\"college\":\"Baylor\",\"height\":\"75\",\"rotowire_id\":\"10163\",\"jersey\":\"14\",\"twitter_username\":\"b_petty14\",\"sportsdata_id\":\"609ab653-c3d4-4138-a2d9-c697a34174ad\",\"team\":\"FA\",\"cbs_id\":\"1686061\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10394\",\"stats_id\":\"28463\",\"position\":\"QB\",\"stats_global_id\":\"541469\",\"espn_id\":\"2575660\",\"weight\":\"220\",\"id\":\"12146\",\"birthdate\":\"675493200\",\"draft_team\":\"NOS\",\"name\":\"Grayson, Garrett\",\"draft_pick\":\"11\",\"college\":\"Colorado State\",\"rotowire_id\":\"10175\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"gbg_18\",\"sportsdata_id\":\"5b64cbb5-0af6-4efc-a441-31c1f33d2eab\",\"team\":\"FA\",\"cbs_id\":\"1737770\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"LAR\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"LAC\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"29\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jeremylangford/2552379\",\"rotoworld_id\":\"10473\",\"stats_id\":\"28494\",\"position\":\"RB\",\"stats_global_id\":\"557370\",\"espn_id\":\"2515416\",\"weight\":\"211\",\"id\":\"12156\",\"birthdate\":\"691995600\",\"draft_team\":\"CHI\",\"name\":\"Langford, Jeremy\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"72\",\"rotowire_id\":\"10186\",\"jersey\":\"43\",\"twitter_username\":\"J_Lang33\",\"sportsdata_id\":\"6512b90e-d6b3-4719-bb0c-a75f97673f37\",\"team\":\"FA\",\"cbs_id\":\"1762313\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"27\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"NYG\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"karloswilliams/2552380\",\"rotoworld_id\":\"10532\",\"stats_id\":\"28543\",\"position\":\"RB\",\"stats_global_id\":\"605426\",\"espn_id\":\"2576817\",\"weight\":\"230\",\"id\":\"12160\",\"birthdate\":\"736491600\",\"draft_team\":\"BUF\",\"name\":\"Williams, Karlos\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"10184\",\"jersey\":\"30\",\"twitter_username\":\"Karlos_Sr\",\"sportsdata_id\":\"4fca6010-11b6-4052-a097-8728c6174a08\",\"team\":\"FA\",\"cbs_id\":\"1860763\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"mattjones/2552635\",\"rotoworld_id\":\"10493\",\"stats_id\":\"28483\",\"position\":\"RB\",\"stats_global_id\":\"694617\",\"espn_id\":\"2980105\",\"weight\":\"239\",\"id\":\"12162\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Jones, Matt\",\"draft_pick\":\"31\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"10189\",\"jersey\":\"38\",\"sportsdata_id\":\"2641d36d-7c61-445f-980f-313671f2e8ce\",\"team\":\"FA\",\"cbs_id\":\"2000854\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"ARI\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"FA\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"sammiecoates/2552470\",\"rotoworld_id\":\"10285\",\"stats_id\":\"28475\",\"position\":\"WR\",\"stats_global_id\":\"593296\",\"espn_id\":\"2574549\",\"weight\":\"212\",\"id\":\"12178\",\"birthdate\":\"733554000\",\"draft_team\":\"PIT\",\"name\":\"Coates, Sammie\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"73\",\"rotowire_id\":\"10211\",\"jersey\":\"18\",\"twitter_username\":\"sammiecoates11\",\"sportsdata_id\":\"52d09eea-a580-447a-8062-5841d5a9c8b3\",\"team\":\"FA\",\"cbs_id\":\"1824794\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"13\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"PHI\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"DAL\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"rashadgreene/2552425\",\"rotoworld_id\":\"10397\",\"stats_id\":\"28527\",\"position\":\"WR\",\"stats_global_id\":\"605413\",\"espn_id\":\"2576785\",\"weight\":\"190\",\"id\":\"12183\",\"birthdate\":\"717224400\",\"draft_team\":\"JAC\",\"name\":\"Greene, Rashad\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10212\",\"jersey\":\"13\",\"twitter_username\":\"RG80_\",\"sportsdata_id\":\"73d6cb8a-3d72-4a6a-b3c9-fe61dfd1bd41\",\"team\":\"FA\",\"cbs_id\":\"1860750\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"ATL\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"MIN\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"13\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"NEP\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tonylippett/2552427\",\"rotoworld_id\":\"10533\",\"stats_id\":\"28544\",\"position\":\"CB\",\"stats_global_id\":\"557362\",\"espn_id\":\"2515418\",\"weight\":\"192\",\"id\":\"12189\",\"birthdate\":\"710053200\",\"draft_team\":\"MIA\",\"name\":\"Lippett, Tony\",\"draft_pick\":\"20\",\"college\":\"Michigan State\",\"height\":\"74\",\"rotowire_id\":\"10227\",\"jersey\":\"39\",\"twitter_username\":\"Tony_Lippett14\",\"sportsdata_id\":\"c0cfe76c-0633-4b6b-b282-02ca9911cabd\",\"team\":\"FA\",\"cbs_id\":\"1762314\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"vincemayle/2552431\",\"rotoworld_id\":\"10412\",\"stats_id\":\"28511\",\"position\":\"TE\",\"stats_global_id\":\"749539\",\"espn_id\":\"3052066\",\"weight\":\"247\",\"id\":\"12196\",\"birthdate\":\"676702800\",\"draft_team\":\"CLE\",\"name\":\"Mayle, Vince\",\"draft_pick\":\"24\",\"college\":\"Washington State\",\"height\":\"74\",\"rotowire_id\":\"10213\",\"jersey\":\"83\",\"twitter_username\":\"Vince_Mayle\",\"sportsdata_id\":\"34cab90e-62e4-4d0c-a7ca-bbba76a2c6b0\",\"team\":\"FA\",\"cbs_id\":\"2079732\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"TBB\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"17\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"IND\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"83\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"JAC\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"DEN\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"JAC\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"MIA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"KCC\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"shaneray/2552451\",\"rotoworld_id\":\"10302\",\"stats_id\":\"28411\",\"position\":\"LB\",\"stats_global_id\":\"605268\",\"espn_id\":\"2577371\",\"weight\":\"255\",\"id\":\"12216\",\"birthdate\":\"737701200\",\"draft_team\":\"DEN\",\"name\":\"Ray, Shane\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10308\",\"jersey\":\"91\",\"twitter_username\":\"StingRay56\",\"sportsdata_id\":\"17cc7638-a3a6-4008-9fbb-72f03ef5f775\",\"team\":\"FA\",\"cbs_id\":\"1860857\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"LB\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"LAR\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"NOS\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10400\",\"stats_id\":\"28467\",\"position\":\"DE\",\"stats_global_id\":\"693998\",\"espn_id\":\"2979652\",\"weight\":\"243\",\"id\":\"12220\",\"birthdate\":\"759042000\",\"draft_team\":\"SFO\",\"name\":\"Harold, Eli\",\"draft_pick\":\"15\",\"college\":\"Virginia\",\"rotowire_id\":\"10350\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"EliHaroldNews\",\"sportsdata_id\":\"b0ccc4f7-84a8-448b-bc7c-11e41d14ad09\",\"team\":\"FA\",\"cbs_id\":\"2000059\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"LB\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"WAS\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"92\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"NEP\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"JAC\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"michaelbennett/2552733\",\"rotoworld_id\":\"10555\",\"stats_id\":\"28568\",\"position\":\"DT\",\"stats_global_id\":\"606472\",\"espn_id\":\"2576371\",\"weight\":\"287\",\"id\":\"12228\",\"birthdate\":\"730530000\",\"draft_team\":\"JAC\",\"name\":\"Bennett, Michael\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"10312\",\"jersey\":\"93\",\"sportsdata_id\":\"eb96d887-4380-491e-b22f-b0cdd0bd64f5\",\"team\":\"ATL\",\"cbs_id\":\"1871307\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DT\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"BUF\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"DE\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"ATL\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"JAC\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"SFO\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, A.J.\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"NOS\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"LAR\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"22\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10370\",\"stats_id\":\"28430\",\"position\":\"CB\",\"stats_global_id\":\"589985\",\"espn_id\":\"2577292\",\"weight\":\"203\",\"id\":\"12247\",\"birthdate\":\"732603600\",\"draft_team\":\"ATL\",\"name\":\"Collins, Jalen\",\"draft_pick\":\"10\",\"college\":\"LSU\",\"rotowire_id\":\"10405\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"JayCar_11\",\"sportsdata_id\":\"716c039e-a1c7-42f7-87f9-ff414df726d3\",\"team\":\"FA\",\"cbs_id\":\"1824824\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"MIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"BUF\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"derronsmith/2552390\",\"rotoworld_id\":\"10571\",\"stats_id\":\"28585\",\"position\":\"S\",\"stats_global_id\":\"562372\",\"espn_id\":\"2517248\",\"weight\":\"195\",\"id\":\"12253\",\"birthdate\":\"697179600\",\"draft_team\":\"CIN\",\"name\":\"Smith, Derron\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"70\",\"rotowire_id\":\"10386\",\"jersey\":\"37\",\"twitter_username\":\"D_SmithFS\",\"sportsdata_id\":\"04917392-c076-4f86-b3f2-c20350b0efb2\",\"team\":\"FA\",\"cbs_id\":\"1737565\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"ATL\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"tremcbride/2552428\",\"rotoworld_id\":\"10474\",\"stats_id\":\"28633\",\"position\":\"WR\",\"stats_global_id\":\"594730\",\"espn_id\":\"2566041\",\"weight\":\"210\",\"id\":\"12260\",\"birthdate\":\"723186000\",\"draft_team\":\"TEN\",\"name\":\"McBride, Tre\",\"draft_pick\":\"28\",\"college\":\"William & Mary\",\"height\":\"72\",\"rotowire_id\":\"10214\",\"jersey\":\"88\",\"twitter_username\":\"Uno_Dos_Tre3\",\"sportsdata_id\":\"24779156-67f5-45ac-a73e-09184d4d314a\",\"team\":\"FA\",\"cbs_id\":\"1825510\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NYJ\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"OAK\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"31\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"DAL\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"CLE\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"CB\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"21\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"PHI\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"NYG\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"craigmager/2552570\",\"rotoworld_id\":\"10488\",\"stats_id\":\"28471\",\"position\":\"CB\",\"stats_global_id\":\"562995\",\"espn_id\":\"2510713\",\"weight\":\"200\",\"id\":\"12286\",\"birthdate\":\"708238800\",\"draft_team\":\"SDC\",\"name\":\"Mager, Craig\",\"draft_pick\":\"19\",\"college\":\"Texas State\",\"height\":\"71\",\"rotowire_id\":\"10418\",\"jersey\":\"49\",\"twitter_username\":\"CM_Lockdown25\",\"sportsdata_id\":\"86476721-3f9e-4ad1-8c7a-40be5a43e602\",\"team\":\"FA\",\"cbs_id\":\"1767384\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"geneogrissom/2552271\",\"rotoworld_id\":\"10496\",\"stats_id\":\"28485\",\"position\":\"LB\",\"stats_global_id\":\"542879\",\"espn_id\":\"2514217\",\"weight\":\"265\",\"id\":\"12290\",\"birthdate\":\"707634000\",\"draft_team\":\"NEP\",\"name\":\"Grissom, Geneo\",\"draft_pick\":\"33\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"10338\",\"jersey\":\"99\",\"twitter_username\":\"Geneo_G\",\"sportsdata_id\":\"fc909404-fec3-40af-b8e8-22ffcb48a456\",\"team\":\"FA\",\"cbs_id\":\"1737590\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"97\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"HOU\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"IND\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"GBP\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DE\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"ARI\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"joshshaw/2552259\",\"rotoworld_id\":\"10465\",\"stats_id\":\"28508\",\"position\":\"CB\",\"stats_global_id\":\"542792\",\"espn_id\":\"2971605\",\"weight\":\"197\",\"id\":\"12299\",\"birthdate\":\"701672400\",\"draft_team\":\"CIN\",\"name\":\"Shaw, Josh\",\"draft_pick\":\"21\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"10420\",\"jersey\":\"27\",\"sportsdata_id\":\"1686f2b7-90e8-4d0a-89f8-415310ae2bd8\",\"team\":\"ARI\",\"cbs_id\":\"1737241\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"martrellspaight/2552316\",\"rotoworld_id\":\"10521\",\"stats_id\":\"28529\",\"position\":\"LB\",\"stats_global_id\":\"744434\",\"espn_id\":\"3046428\",\"weight\":\"243\",\"id\":\"12307\",\"birthdate\":\"744526800\",\"draft_team\":\"WAS\",\"name\":\"Spaight, Martrell\",\"draft_pick\":\"5\",\"college\":\"Arkansas\",\"height\":\"72\",\"rotowire_id\":\"10369\",\"twitter_username\":\"spaight1\",\"sportsdata_id\":\"5e576254-2f7e-4456-8bbb-26964d1e67b6\",\"team\":\"FA\",\"cbs_id\":\"2079858\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10528\",\"stats_id\":\"28539\",\"position\":\"DT\",\"stats_global_id\":\"553094\",\"espn_id\":\"2517779\",\"weight\":\"315\",\"id\":\"12314\",\"birthdate\":\"699944400\",\"draft_team\":\"IND\",\"name\":\"Parry, David\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"rotowire_id\":\"10461\",\"height\":\"74\",\"jersey\":\"75\",\"twitter_username\":\"DavidParry58\",\"sportsdata_id\":\"376a61bd-de05-4fb1-a698-7f93fd1a102c\",\"team\":\"FA\",\"cbs_id\":\"1759756\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"kyleemanuel/2552296\",\"rotoworld_id\":\"10530\",\"stats_id\":\"28541\",\"position\":\"LB\",\"stats_global_id\":\"559871\",\"espn_id\":\"2508212\",\"weight\":\"250\",\"id\":\"12315\",\"birthdate\":\"682318800\",\"draft_team\":\"FA\",\"name\":\"Emanuel, Kyle\",\"draft_pick\":\"17\",\"college\":\"North Dakota State\",\"height\":\"75\",\"rotowire_id\":\"10359\",\"jersey\":\"51\",\"twitter_username\":\"KyleEmanuel51\",\"sportsdata_id\":\"bb4619b4-30e6-473d-947e-41d75a573475\",\"team\":\"FA\",\"cbs_id\":\"1766149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"WAS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"JAC\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10559\",\"stats_id\":\"28572\",\"position\":\"WR\",\"stats_global_id\":\"557215\",\"espn_id\":\"2516957\",\"weight\":\"195\",\"id\":\"12337\",\"birthdate\":\"694414800\",\"draft_team\":\"TBB\",\"name\":\"Clay, Kaelin\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"10241\",\"height\":\"70\",\"jersey\":\"15\",\"twitter_username\":\"CALiboy4\",\"sportsdata_id\":\"c5f35a06-791b-43e1-befc-df0c54b3b486\",\"team\":\"FA\",\"cbs_id\":\"2131924\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"LAC\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"dariusphilon/2552676\",\"rotoworld_id\":\"10566\",\"stats_id\":\"28580\",\"position\":\"DE\",\"stats_global_id\":\"693831\",\"espn_id\":\"2980071\",\"weight\":\"286\",\"id\":\"12343\",\"birthdate\":\"759214800\",\"draft_team\":\"SDC\",\"name\":\"Philon, Darius\",\"draft_pick\":\"16\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"10330\",\"jersey\":\"93\",\"twitter_username\":\"DariusPhilon\",\"sportsdata_id\":\"61b04d13-ebdb-49eb-9f5a-ea85355d6360\",\"team\":\"FA\",\"cbs_id\":\"1999943\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"l.t.walton/2552444\",\"rotoworld_id\":\"10573\",\"stats_id\":\"28587\",\"position\":\"DE\",\"stats_global_id\":\"542173\",\"espn_id\":\"2516417\",\"weight\":\"319\",\"id\":\"12348\",\"draft_team\":\"PIT\",\"name\":\"Walton, Leterrius\",\"draft_pick\":\"23\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10335\",\"height\":\"77\",\"sportsdata_id\":\"37845827-23af-4cc2-8f27-4fd355e4c4a6\",\"team\":\"BUF\",\"cbs_id\":\"1752070\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"28\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"a.j.derby/2552580\",\"rotoworld_id\":\"10576\",\"stats_id\":\"28590\",\"position\":\"TE\",\"stats_global_id\":\"543797\",\"espn_id\":\"3046413\",\"weight\":\"240\",\"id\":\"12351\",\"birthdate\":\"685342800\",\"draft_team\":\"NEP\",\"name\":\"Derby, A.J.\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"height\":\"77\",\"rotowire_id\":\"10484\",\"jersey\":\"85\",\"twitter_username\":\"AJ_Derby\",\"sportsdata_id\":\"f0805b80-e01c-46fd-99a6-dae1134fb764\",\"team\":\"FA\",\"cbs_id\":\"2061203\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"PIT\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DT\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"95\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"DAL\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"hayespullard/2552313\",\"rotoworld_id\":\"10592\",\"stats_id\":\"28607\",\"position\":\"LB\",\"stats_global_id\":\"555682\",\"espn_id\":\"2510601\",\"weight\":\"235\",\"id\":\"12362\",\"birthdate\":\"703573200\",\"draft_team\":\"CLE\",\"name\":\"Pullard, Hayes\",\"draft_pick\":\"2\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10371\",\"jersey\":\"44\",\"twitter_username\":\"HayesPullard\",\"sportsdata_id\":\"5a5ff009-7591-4a42-b7cd-07a77af5b939\",\"team\":\"FA\",\"cbs_id\":\"2008675\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"nealsterling/2553451\",\"rotoworld_id\":\"10593\",\"stats_id\":\"28608\",\"position\":\"TE\",\"stats_global_id\":\"554911\",\"espn_id\":\"2513770\",\"weight\":\"257\",\"id\":\"12363\",\"birthdate\":\"695365200\",\"draft_team\":\"JAC\",\"name\":\"Sterling, Neal\",\"draft_pick\":\"3\",\"college\":\"Monmouth (NJ)\",\"height\":\"76\",\"rotowire_id\":\"10493\",\"twitter_username\":\"Neal_Sterling\",\"sportsdata_id\":\"5e3b63cd-db76-48a8-82dd-7ccc8222f6ae\",\"team\":\"FA\",\"cbs_id\":\"2174212\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"CAR\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"JAC\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"27\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"NYJ\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"SEA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"NYJ\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"OAK\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"HOU\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordantaylor/2553606\",\"rotoworld_id\":\"10673\",\"stats_id\":\"28727\",\"position\":\"WR\",\"stats_global_id\":\"550968\",\"espn_id\":\"2515662\",\"weight\":\"195\",\"id\":\"12398\",\"draft_team\":\"FA\",\"birthdate\":\"698389200\",\"name\":\"Taylor, Jordan\",\"college\":\"Rice\",\"rotowire_id\":\"10238\",\"height\":\"77\",\"jersey\":\"18\",\"sportsdata_id\":\"971b216e-0859-482b-9b72-045f7ad35605\",\"team\":\"FA\",\"cbs_id\":\"2174863\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mikehull/2552317\",\"rotoworld_id\":\"10633\",\"stats_id\":\"28908\",\"position\":\"LB\",\"stats_global_id\":\"560296\",\"espn_id\":\"2515545\",\"weight\":\"235\",\"id\":\"12419\",\"draft_team\":\"FA\",\"birthdate\":\"769842000\",\"name\":\"Hull, Mike\",\"college\":\"Penn State\",\"rotowire_id\":\"10373\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"a333a955-16bf-4157-bc86-a6919ce9edf8\",\"team\":\"MIA\",\"cbs_id\":\"1737231\"},{\"draft_year\":\"2015\",\"nfl_id\":\"zachvigil/2553687\",\"rotoworld_id\":\"10987\",\"stats_id\":\"28916\",\"position\":\"LB\",\"stats_global_id\":\"544486\",\"espn_id\":\"2517389\",\"weight\":\"238\",\"id\":\"12427\",\"draft_team\":\"FA\",\"birthdate\":\"670136400\",\"name\":\"Vigil, Zach\",\"college\":\"Utah State\",\"rotowire_id\":\"10381\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"775d6455-bc3c-4fd0-9adf-ae105f71fc95\",\"team\":\"FA\",\"cbs_id\":\"2174906\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"KCC\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"CAR\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brianparker/2553840\",\"rotoworld_id\":\"10763\",\"stats_id\":\"28688\",\"position\":\"TE\",\"stats_global_id\":\"556849\",\"espn_id\":\"2508328\",\"weight\":\"265\",\"id\":\"12433\",\"draft_team\":\"FA\",\"birthdate\":\"707202000\",\"name\":\"Parker, Brian\",\"college\":\"Albany\",\"rotowire_id\":\"10661\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"c5606f69-f550-4b4a-b61a-f1f71142a32f\",\"team\":\"NOS\",\"cbs_id\":\"2175148\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"GBP\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"OAK\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"WAS\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2014\",\"nfl_id\":\"robertthomas/2550532\",\"rotoworld_id\":\"10109\",\"stats_id\":\"28178\",\"position\":\"DT\",\"stats_global_id\":\"512087\",\"weight\":\"316\",\"id\":\"12449\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Thomas, Robert\",\"college\":\"Arkansas\",\"rotowire_id\":\"9636\",\"height\":\"73\",\"jersey\":\"96\",\"sportsdata_id\":\"de3f11e3-90ae-4ad2-880f-48e9b6f729f8\",\"team\":\"FA\",\"cbs_id\":\"2130728\"},{\"draft_year\":\"2015\",\"nfl_id\":\"denzelrice/2553736\",\"rotoworld_id\":\"10745\",\"stats_id\":\"28656\",\"position\":\"CB\",\"stats_global_id\":\"602314\",\"espn_id\":\"2565759\",\"weight\":\"185\",\"id\":\"12455\",\"draft_team\":\"FA\",\"birthdate\":\"733554000\",\"name\":\"Rice, Denzel\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"10685\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"3f05e230-38fb-4caa-b488-69e034ecdc03\",\"team\":\"FA\",\"cbs_id\":\"2174959\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"ARI\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"BAL\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattdarr/2553642\",\"rotoworld_id\":\"10964\",\"stats_id\":\"28905\",\"position\":\"PN\",\"stats_global_id\":\"553035\",\"espn_id\":\"2516357\",\"weight\":\"217\",\"id\":\"12472\",\"draft_team\":\"FA\",\"birthdate\":\"710053200\",\"name\":\"Darr, Matt\",\"college\":\"Tennessee\",\"rotowire_id\":\"10693\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"325735c1-9fa1-48ee-bb8d-2ae45781f28d\",\"team\":\"FA\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11108\",\"stats_id\":\"29114\",\"position\":\"DT\",\"stats_global_id\":\"600757\",\"espn_id\":\"2577757\",\"weight\":\"299\",\"id\":\"12474\",\"draft_team\":\"FA\",\"birthdate\":\"722494800\",\"name\":\"McGill, T.Y.\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10660\",\"height\":\"72\",\"jersey\":\"95\",\"sportsdata_id\":\"07c51c65-489b-4bae-b997-f1a0f35deffe\",\"team\":\"FA\",\"cbs_id\":\"2175354\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11023\",\"stats_id\":\"29001\",\"position\":\"WR\",\"stats_global_id\":\"605328\",\"espn_id\":\"2577645\",\"weight\":\"205\",\"id\":\"12475\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Marquez, Bradley\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10689\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"fc75f3fc-9347-4f7c-a521-e67f3888eda5\",\"team\":\"FA\",\"cbs_id\":\"2174946\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10665\",\"stats_id\":\"28839\",\"position\":\"QB\",\"stats_global_id\":\"599113\",\"espn_id\":\"2565969\",\"weight\":\"210\",\"id\":\"12476\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Heinicke, Taylor\",\"college\":\"Old Dominion\",\"rotowire_id\":\"10179\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"2c259733-ec2c-4e3c-bb7b-34dc0d37dc34\",\"team\":\"FA\",\"cbs_id\":\"2174914\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"FA\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"51\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NYJ\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"LAC\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11021\",\"stats_id\":\"28999\",\"position\":\"LB\",\"stats_global_id\":\"607259\",\"espn_id\":\"2577602\",\"weight\":\"229\",\"id\":\"12496\",\"draft_team\":\"FA\",\"birthdate\":\"744440400\",\"name\":\"Lynch, Cameron\",\"college\":\"Syracuse\",\"rotowire_id\":\"10688\",\"height\":\"72\",\"jersey\":\"52\",\"sportsdata_id\":\"b882eddd-10fc-4cc0-9a8f-ca2d6db0c6fc\",\"team\":\"FA\",\"cbs_id\":\"2175041\"},{\"draft_year\":\"2015\",\"nfl_id\":\"gabeholmes/2553658\",\"rotoworld_id\":\"11002\",\"stats_id\":\"28964\",\"position\":\"TE\",\"stats_global_id\":\"505752\",\"espn_id\":\"2468368\",\"weight\":\"255\",\"id\":\"12499\",\"draft_team\":\"FA\",\"birthdate\":\"670222800\",\"name\":\"Holmes, Gabe\",\"college\":\"Purdue\",\"rotowire_id\":\"10560\",\"height\":\"77\",\"jersey\":\"47\",\"sportsdata_id\":\"0f0aa0af-8830-47f8-b83b-ba0aab773594\",\"team\":\"FA\",\"cbs_id\":\"2174910\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10434\",\"stats_id\":\"28377\",\"position\":\"LB\",\"stats_global_id\":\"399891\",\"espn_id\":\"2265764\",\"weight\":\"237\",\"id\":\"12529\",\"draft_team\":\"FA\",\"birthdate\":\"594277200\",\"name\":\"Peters, Brian\",\"college\":\"Northwestern\",\"rotowire_id\":\"10153\",\"height\":\"76\",\"jersey\":\"52\",\"sportsdata_id\":\"91fc931a-acff-46d1-8233-182ce9635740\",\"team\":\"HOU\",\"cbs_id\":\"2169092\"},{\"draft_year\":\"2015\",\"nfl_id\":\"willtye/2553830\",\"rotoworld_id\":\"11056\",\"stats_id\":\"29046\",\"position\":\"TE\",\"stats_global_id\":\"553297\",\"espn_id\":\"2512523\",\"weight\":\"260\",\"id\":\"12532\",\"draft_team\":\"FA\",\"birthdate\":\"689230800\",\"name\":\"Tye, Will\",\"college\":\"Stony Brook\",\"rotowire_id\":\"10700\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"9ace8914-bf2c-422a-af03-62a78bc27880\",\"team\":\"FA\",\"cbs_id\":\"2175071\"},{\"draft_year\":\"2015\",\"nfl_id\":\"davidirving/2553805\",\"rotoworld_id\":\"10959\",\"stats_id\":\"29096\",\"position\":\"DT\",\"stats_global_id\":\"599100\",\"espn_id\":\"2577162\",\"weight\":\"290\",\"id\":\"12536\",\"draft_team\":\"FA\",\"birthdate\":\"745650000\",\"name\":\"Irving, David\",\"college\":\"Iowa State\",\"rotowire_id\":\"10341\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"9061a751-bfd4-41f5-a585-9f3b20708b94\",\"team\":\"FA\",\"cbs_id\":\"2175059\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brandonking/2553665\",\"rotoworld_id\":\"10969\",\"stats_id\":\"28987\",\"position\":\"LB\",\"stats_global_id\":\"746886\",\"espn_id\":\"3051905\",\"weight\":\"220\",\"id\":\"12542\",\"draft_team\":\"FA\",\"birthdate\":\"739515600\",\"name\":\"King, Brandon\",\"college\":\"Auburn\",\"rotowire_id\":\"12194\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"d5ed27ed-e5f3-4d4a-a8af-79887c1881a0\",\"team\":\"NEP\",\"cbs_id\":\"2174923\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11020\",\"stats_id\":\"28998\",\"position\":\"LB\",\"stats_global_id\":\"870493\",\"espn_id\":\"3085243\",\"weight\":\"265\",\"id\":\"12563\",\"draft_team\":\"FA\",\"birthdate\":\"685429200\",\"name\":\"Longacre, Matt\",\"college\":\"Northwest Missouri State\",\"rotowire_id\":\"10709\",\"height\":\"75\",\"jersey\":\"49\",\"sportsdata_id\":\"429ba323-7175-4bb2-8f81-e77fe9d38f3c\",\"team\":\"FA\",\"cbs_id\":\"2174945\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"TEN\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"0\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"PIT\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11280\",\"stats_id\":\"29334\",\"position\":\"QB\",\"stats_global_id\":\"606102\",\"espn_id\":\"2576261\",\"weight\":\"215\",\"id\":\"12613\",\"birthdate\":\"728283600\",\"draft_team\":\"OAK\",\"name\":\"Cook, Connor\",\"draft_pick\":\"2\",\"college\":\"Michigan State\",\"rotowire_id\":\"10978\",\"height\":\"76\",\"jersey\":\"18\",\"twitter_username\":\"Connor_Cook03\",\"sportsdata_id\":\"f1ec6243-aaca-4237-85fb-9699bc90aa09\",\"team\":\"FA\",\"cbs_id\":\"1868391\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"NEP\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11300\",\"stats_id\":\"29396\",\"position\":\"QB\",\"stats_global_id\":\"598962\",\"espn_id\":\"2577128\",\"weight\":\"218\",\"id\":\"12618\",\"birthdate\":\"719557200\",\"draft_team\":\"KCC\",\"name\":\"Hogan, Kevin\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"11058\",\"height\":\"75\",\"jersey\":\"9\",\"twitter_username\":\"khoagie8\",\"sportsdata_id\":\"cd571cfc-9b44-4b69-a801-431db9aaa85e\",\"team\":\"FA\",\"cbs_id\":\"1851143\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"DEN\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"6\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DET\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"SEA\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"FA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"DEN\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"NYJ\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"PHI\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"IND\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"WAS\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"TBB\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11472\",\"stats_id\":\"29416\",\"position\":\"WR\",\"stats_global_id\":\"695875\",\"weight\":\"191\",\"id\":\"12638\",\"birthdate\":\"755758800\",\"draft_team\":\"BAL\",\"name\":\"Reynolds, Keenan\",\"draft_pick\":\"7\",\"college\":\"Navy\",\"rotowire_id\":\"11227\",\"height\":\"70\",\"jersey\":\"19\",\"twitter_username\":\"kreynolds_19\",\"sportsdata_id\":\"b10b366e-6de8-44fb-ba02-1156bb8b3b09\",\"team\":\"FA\",\"cbs_id\":\"2001697\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"WAS\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11684\",\"stats_id\":\"29518\",\"position\":\"RB\",\"stats_global_id\":\"609745\",\"espn_id\":\"2575553\",\"weight\":\"215\",\"id\":\"12642\",\"draft_team\":\"FA\",\"birthdate\":\"731480400\",\"name\":\"Farrow, Kenneth\",\"college\":\"Houston\",\"rotowire_id\":\"11209\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"81050032-4268-4906-874f-3463a6b57a3d\",\"team\":\"FA\",\"cbs_id\":\"2237244\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11665\",\"stats_id\":\"29821\",\"position\":\"RB\",\"stats_global_id\":\"599008\",\"espn_id\":\"2577245\",\"weight\":\"235\",\"id\":\"12644\",\"draft_team\":\"FA\",\"birthdate\":\"745477200\",\"name\":\"Madden, Tre\",\"college\":\"Southern California\",\"rotowire_id\":\"10938\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"538d0379-bf54-4df5-9564-ae33fcd551e1\",\"team\":\"FA\",\"cbs_id\":\"1851124\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"MIN\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"NYG\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"FA\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11532\",\"stats_id\":\"29855\",\"position\":\"WR\",\"stats_global_id\":\"822756\",\"espn_id\":\"3125745\",\"weight\":\"203\",\"id\":\"12649\",\"draft_team\":\"FA\",\"birthdate\":\"754376400\",\"name\":\"Lewis, Roger\",\"college\":\"Bowling Green\",\"rotowire_id\":\"10843\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8284f00c-d46a-4cc7-a870-204ddfb4176e\",\"team\":\"FA\",\"cbs_id\":\"2131386\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11277\",\"stats_id\":\"29320\",\"position\":\"WR\",\"stats_global_id\":\"696195\",\"espn_id\":\"2982804\",\"weight\":\"215\",\"id\":\"12655\",\"birthdate\":\"759387600\",\"draft_team\":\"MIA\",\"name\":\"Carroo, Leonte\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"10899\",\"height\":\"73\",\"jersey\":\"88\",\"twitter_username\":\"LeonteCarroo1\",\"sportsdata_id\":\"931dbb14-36ac-4044-a61e-5f11854f0383\",\"team\":\"FA\",\"cbs_id\":\"2001803\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"81\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"TEN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"12\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"ARI\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11497\",\"stats_id\":\"29447\",\"position\":\"WR\",\"stats_global_id\":\"696157\",\"espn_id\":\"2979533\",\"weight\":\"208\",\"id\":\"12662\",\"birthdate\":\"756622800\",\"draft_team\":\"SFO\",\"name\":\"Burbridge, Aaron\",\"draft_pick\":\"38\",\"college\":\"Michigan State\",\"rotowire_id\":\"10927\",\"height\":\"73\",\"jersey\":\"13\",\"twitter_username\":\"ABurb16\",\"sportsdata_id\":\"fcf3d16b-4cfa-4fd4-87c6-979b5a43c36f\",\"team\":\"FA\",\"cbs_id\":\"2001905\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"GBP\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11312\",\"stats_id\":\"29346\",\"position\":\"WR\",\"stats_global_id\":\"607095\",\"espn_id\":\"2578553\",\"weight\":\"200\",\"id\":\"12669\",\"draft_team\":\"NEP\",\"birthdate\":\"743144400\",\"name\":\"Mitchell, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"rotowire_id\":\"10991\",\"height\":\"73\",\"jersey\":\"19\",\"twitter_username\":\"GA\",\"team\":\"FA\",\"cbs_id\":\"1877285\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"JAC\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"LAR\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"ATL\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"PIT\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"BUF\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"SFO\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"LB\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"KCC\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"SFO\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"DET\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CIN\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"TEN\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"KCC\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"KCC\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"MIN\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"MIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"KCC\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"NOS\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"CB\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"OAK\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"NOS\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"27\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"MIN\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11379\",\"stats_id\":\"29293\",\"position\":\"PK\",\"stats_global_id\":\"695244\",\"espn_id\":\"2978887\",\"weight\":\"207\",\"id\":\"12721\",\"draft_team\":\"TBB\",\"birthdate\":\"769150800\",\"name\":\"Aguayo, Roberto\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"rotowire_id\":\"10878\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"_RobertoAguayo\",\"team\":\"FA\",\"cbs_id\":\"2001149\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"CHI\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"PIT\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"CAR\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"TEN\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DT\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"51\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11368\",\"stats_id\":\"29291\",\"position\":\"S\",\"stats_global_id\":\"733745\",\"espn_id\":\"3045128\",\"weight\":\"215\",\"id\":\"12747\",\"birthdate\":\"795243600\",\"draft_team\":\"IND\",\"name\":\"Green, T.J.\",\"draft_pick\":\"26\",\"college\":\"Clemson\",\"rotowire_id\":\"11045\",\"height\":\"75\",\"jersey\":\"36\",\"twitter_username\":\"BossGreen256\",\"sportsdata_id\":\"486c2ff3-5e42-4bad-9849-2084ad0af423\",\"team\":\"CAR\",\"cbs_id\":\"2060408\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"PIT\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"DEN\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"CAR\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"DEN\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"TBB\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"DAL\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"CB\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"JAC\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"NYJ\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"ARI\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11398\",\"stats_id\":\"29308\",\"position\":\"CB\",\"stats_global_id\":\"697481\",\"espn_id\":\"2980150\",\"weight\":\"196\",\"id\":\"12759\",\"birthdate\":\"751006800\",\"draft_team\":\"KCC\",\"name\":\"Russell, KeiVarae\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11166\",\"height\":\"71\",\"jersey\":\"20\",\"twitter_username\":\"Keivarae1\",\"sportsdata_id\":\"771d19bc-f5e2-4a25-8553-4ad3c341c1c9\",\"team\":\"FA\",\"cbs_id\":\"2005664\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"OAK\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11419\",\"stats_id\":\"29314\",\"position\":\"DT\",\"stats_global_id\":\"653872\",\"espn_id\":\"2976317\",\"weight\":\"295\",\"id\":\"12761\",\"birthdate\":\"722581200\",\"draft_team\":\"BUF\",\"name\":\"Washington, Adolphus\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"rotowire_id\":\"10892\",\"height\":\"76\",\"jersey\":\"53\",\"twitter_username\":\"awashington_92\",\"sportsdata_id\":\"af24c36b-adfe-49e5-82a8-67f9ea7264ab\",\"team\":\"FA\",\"cbs_id\":\"1983803\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"CIN\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"GBP\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"79\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PIT\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11421\",\"stats_id\":\"29326\",\"position\":\"CB\",\"stats_global_id\":\"653767\",\"espn_id\":\"2972286\",\"weight\":\"200\",\"id\":\"12765\",\"birthdate\":\"716014800\",\"draft_team\":\"ARI\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"30\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10901\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"cdb10720-0d41-4cb6-9fb8-c00713754a1e\",\"team\":\"ARI\",\"cbs_id\":\"1984362\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11423\",\"stats_id\":\"29330\",\"position\":\"DT\",\"stats_global_id\":\"651875\",\"espn_id\":\"2974333\",\"weight\":\"331\",\"id\":\"12766\",\"birthdate\":\"761979600\",\"draft_team\":\"NEP\",\"name\":\"Valentine, Vincent\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"rotowire_id\":\"10950\",\"height\":\"75\",\"jersey\":\"96\",\"twitter_username\":\"TheRealVRVJ\",\"sportsdata_id\":\"89781fd0-0817-4de8-ac16-c9cf095b333e\",\"team\":\"FA\",\"cbs_id\":\"1983691\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"53\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"CLE\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"96\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"SFO\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"CLE\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"GBP\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11432\",\"stats_id\":\"29348\",\"position\":\"WR\",\"stats_global_id\":\"693980\",\"espn_id\":\"2971023\",\"weight\":\"215\",\"id\":\"12777\",\"birthdate\":\"764398800\",\"draft_team\":\"CLE\",\"name\":\"Louis, Ricardo\",\"draft_pick\":\"16\",\"college\":\"Auburn\",\"rotowire_id\":\"11000\",\"height\":\"74\",\"jersey\":\"80\",\"twitter_username\":\"GuttaManRick\",\"sportsdata_id\":\"b3cac48b-ecf9-4bf9-963f-a10aeca6a350\",\"team\":\"MIA\",\"cbs_id\":\"2000104\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"CHI\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ATL\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"64\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"CB\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CLE\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11437\",\"stats_id\":\"29359\",\"position\":\"LB\",\"stats_global_id\":\"656002\",\"espn_id\":\"2971051\",\"weight\":\"241\",\"id\":\"12784\",\"birthdate\":\"786690000\",\"draft_team\":\"IND\",\"name\":\"Morrison, Antonio\",\"draft_pick\":\"27\",\"college\":\"Florida\",\"rotowire_id\":\"11220\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"beeb2f7d-e318-478a-956e-7419aae66bd7\",\"team\":\"FA\",\"cbs_id\":\"1984170\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"S\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"TBB\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"SFO\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"GBP\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11443\",\"stats_id\":\"29366\",\"position\":\"DE\",\"stats_global_id\":\"696132\",\"weight\":\"291\",\"id\":\"12789\",\"birthdate\":\"764139600\",\"draft_team\":\"BAL\",\"name\":\"Henry, Willie\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"11056\",\"height\":\"75\",\"jersey\":\"69\",\"twitter_username\":\"WE_69\",\"sportsdata_id\":\"389438be-4bd0-4842-9021-b614289b8d98\",\"team\":\"SFO\",\"cbs_id\":\"2001882\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11324\",\"stats_id\":\"29367\",\"position\":\"CB\",\"stats_global_id\":\"727758\",\"espn_id\":\"3042718\",\"weight\":\"177\",\"id\":\"12790\",\"birthdate\":\"806475600\",\"draft_team\":\"SFO\",\"name\":\"Robinson, Rashard\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"11164\",\"height\":\"74\",\"jersey\":\"30\",\"twitter_username\":\"SHAD_JUSTDOIT2\",\"sportsdata_id\":\"f8c2e532-8de2-4c8b-85bf-ed2e24c3b273\",\"team\":\"FA\",\"cbs_id\":\"2061251\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"JAC\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"99\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"SEA\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DE\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"36\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"TEN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"MIA\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"HOU\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"LAR\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11461\",\"stats_id\":\"29403\",\"position\":\"LB\",\"stats_global_id\":\"605913\",\"espn_id\":\"2567868\",\"weight\":\"250\",\"id\":\"12804\",\"birthdate\":\"738392400\",\"draft_team\":\"DET\",\"name\":\"Williams, Antwione\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"11263\",\"height\":\"75\",\"jersey\":\"49\",\"twitter_username\":\"twanyouafool\",\"sportsdata_id\":\"d65013f2-51b0-45a6-8f26-608574abeee2\",\"team\":\"FA\",\"cbs_id\":\"1865774\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"SDC\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"LAC\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"DEN\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11467\",\"stats_id\":\"29411\",\"position\":\"TE\",\"stats_global_id\":\"608714\",\"espn_id\":\"2580330\",\"weight\":\"245\",\"id\":\"12807\",\"birthdate\":\"744008400\",\"draft_team\":\"FA\",\"name\":\"Hemingway, Temarrick\",\"draft_pick\":\"2\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11009\",\"height\":\"77\",\"jersey\":\"46\",\"twitter_username\":\"Baller4LifeTH\",\"sportsdata_id\":\"02fc59d0-8a66-431f-97fc-21fdc096eb14\",\"team\":\"CAR\",\"cbs_id\":\"1888046\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11469\",\"stats_id\":\"29413\",\"position\":\"PN\",\"stats_global_id\":\"593591\",\"espn_id\":\"2578698\",\"weight\":\"206\",\"id\":\"12808\",\"draft_team\":\"SDC\",\"birthdate\":\"729406800\",\"name\":\"Kaser, Drew\",\"draft_pick\":\"4\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11085\",\"height\":\"74\",\"twitter_username\":\"drewkaser\",\"sportsdata_id\":\"45f4b9ae-f1be-454b-bff7-8f808e6f0268\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"CHI\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11477\",\"stats_id\":\"29422\",\"position\":\"TE\",\"stats_global_id\":\"612030\",\"espn_id\":\"2582138\",\"weight\":\"265\",\"id\":\"12816\",\"birthdate\":\"737787600\",\"draft_team\":\"MIN\",\"name\":\"Morgan, David\",\"draft_pick\":\"13\",\"college\":\"UTSA\",\"rotowire_id\":\"11139\",\"height\":\"76\",\"jersey\":\"89\",\"twitter_username\":\"DMORG_82\",\"sportsdata_id\":\"4bff1c89-f4d1-4699-8c85-69bbbbaec5a2\",\"team\":\"MIN\",\"cbs_id\":\"1907784\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"MIA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"NYJ\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"draft_team\":\"TBB\",\"birthdate\":\"751611600\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"GBP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"34\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"LAC\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"16\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"KCC\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11342\",\"stats_id\":\"29439\",\"position\":\"S\",\"stats_global_id\":\"697963\",\"espn_id\":\"2974631\",\"weight\":\"182\",\"id\":\"12827\",\"birthdate\":\"772088400\",\"draft_team\":\"ARI\",\"name\":\"Miller, Harlan\",\"draft_pick\":\"30\",\"college\":\"Southeastern Louisiana\",\"rotowire_id\":\"11136\",\"height\":\"72\",\"jersey\":\"48\",\"twitter_username\":\"poppaC01\",\"sportsdata_id\":\"a0b23166-6964-4d52-a7b4-9705b61a7e56\",\"team\":\"FA\",\"cbs_id\":\"2006767\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"PHI\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"NYJ\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"DAL\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"52\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"NEP\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"IND\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11502\",\"stats_id\":\"29452\",\"position\":\"CB\",\"stats_global_id\":\"691066\",\"espn_id\":\"2971603\",\"weight\":\"185\",\"id\":\"12834\",\"birthdate\":\"754635600\",\"draft_team\":\"BUF\",\"name\":\"Seymour, Kevon\",\"draft_pick\":\"43\",\"college\":\"USC\",\"rotowire_id\":\"11170\",\"height\":\"72\",\"jersey\":\"23\",\"twitter_username\":\"KevonSeymour\",\"sportsdata_id\":\"e431a42b-5abe-49de-9c8c-f143f393591c\",\"team\":\"FA\",\"cbs_id\":\"1996519\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"34\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"DEN\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11506\",\"stats_id\":\"29456\",\"position\":\"LB\",\"stats_global_id\":\"590430\",\"espn_id\":\"2577203\",\"weight\":\"242\",\"id\":\"12837\",\"birthdate\":\"742107600\",\"draft_team\":\"TEN\",\"name\":\"Wallace, Aaron\",\"draft_pick\":\"1\",\"college\":\"UCLA\",\"rotowire_id\":\"11239\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"e02ce2d7-5bcc-40f2-a35c-3e80e6f7b695\",\"team\":\"FA\",\"cbs_id\":\"1824726\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"BUF\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"MIN\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"NYJ\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"CIN\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"PIT\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"ARI\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11530\",\"stats_id\":\"29487\",\"position\":\"CB\",\"stats_global_id\":\"693428\",\"espn_id\":\"2972090\",\"weight\":\"199\",\"id\":\"12856\",\"birthdate\":\"757141200\",\"draft_team\":\"TEN\",\"name\":\"Reed, Kalan\",\"draft_pick\":\"32\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11248\",\"height\":\"71\",\"jersey\":\"39\",\"twitter_username\":\"kalan_reed11\",\"sportsdata_id\":\"3ade957d-5c6f-4f8d-8d56-fdaae1753aa2\",\"team\":\"SEA\",\"cbs_id\":\"1999692\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"OAK\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11561\",\"stats_id\":\"29680\",\"position\":\"RB\",\"stats_global_id\":\"689726\",\"espn_id\":\"2971289\",\"weight\":\"215\",\"id\":\"12864\",\"draft_team\":\"FA\",\"birthdate\":\"761115600\",\"name\":\"Marshall, Byron\",\"college\":\"Oregon\",\"rotowire_id\":\"11125\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"5274fac8-fa34-46fa-ac4d-7b58bb84999f\",\"team\":\"FA\",\"cbs_id\":\"1996165\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11682\",\"stats_id\":\"29661\",\"position\":\"RB\",\"stats_global_id\":\"604939\",\"espn_id\":\"2577692\",\"weight\":\"220\",\"id\":\"12867\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Wilds, Brandon\",\"college\":\"South Carolina\",\"rotowire_id\":\"10898\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"abeef681-4be7-4ff3-9076-c72ec5a1b2e4\",\"team\":\"FA\",\"cbs_id\":\"1852875\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"CHI\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"MIA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11740\",\"stats_id\":\"29587\",\"position\":\"TE\",\"stats_global_id\":\"690561\",\"espn_id\":\"2567213\",\"weight\":\"250\",\"id\":\"12874\",\"draft_team\":\"FA\",\"birthdate\":\"722494800\",\"name\":\"Valles, Hakeem\",\"college\":\"Monmouth\",\"rotowire_id\":\"11300\",\"height\":\"75\",\"sportsdata_id\":\"32d18129-6c6c-4401-9695-8661ab84b288\",\"team\":\"FA\",\"cbs_id\":\"1996227\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11534\",\"stats_id\":\"29682\",\"position\":\"WR\",\"stats_global_id\":\"834672\",\"espn_id\":\"3125354\",\"weight\":\"198\",\"id\":\"12884\",\"draft_team\":\"FA\",\"birthdate\":\"767250000\",\"name\":\"Sharp, Hunter\",\"college\":\"Utah State\",\"rotowire_id\":\"11016\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"77c7d2cf-2cbf-4901-8a42-863720980754\",\"team\":\"FA\",\"cbs_id\":\"2139452\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11578\",\"stats_id\":\"29559\",\"position\":\"DT\",\"stats_global_id\":\"756607\",\"weight\":\"292\",\"id\":\"12888\",\"draft_team\":\"FA\",\"birthdate\":\"719816400\",\"name\":\"Zimmer, Justin\",\"college\":\"Ferris State\",\"rotowire_id\":\"11327\",\"height\":\"75\",\"jersey\":\"92\",\"sportsdata_id\":\"f125395e-820f-40d7-9775-ac101292719d\",\"team\":\"CLE\",\"cbs_id\":\"2235504\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"DAL\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11896\",\"stats_id\":\"29783\",\"position\":\"TE\",\"stats_global_id\":\"704749\",\"weight\":\"257\",\"id\":\"12899\",\"draft_team\":\"FA\",\"birthdate\":\"754635600\",\"name\":\"Wick, Cole\",\"college\":\"Incarnate Word\",\"rotowire_id\":\"11347\",\"height\":\"78\",\"jersey\":\"89\",\"sportsdata_id\":\"32d58cfa-ffa6-46a1-bd3a-09b6ccca2370\",\"team\":\"NOS\",\"cbs_id\":\"2081600\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12007\",\"stats_id\":\"29961\",\"position\":\"WR\",\"stats_global_id\":\"691495\",\"weight\":\"200\",\"id\":\"12900\",\"draft_team\":\"FA\",\"birthdate\":\"769150800\",\"name\":\"McCaffrey, Max\",\"college\":\"Duke\",\"rotowire_id\":\"11207\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"a02175de-7356-40c9-a14f-f90de29830d7\",\"team\":\"FA\",\"cbs_id\":\"2237234\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11809\",\"birthdate\":\"768114000\",\"draft_team\":\"FA\",\"stats_id\":\"29659\",\"position\":\"PK\",\"name\":\"Rose, Nick\",\"college\":\"Texas\",\"stats_global_id\":\"691355\",\"height\":\"74\",\"rotowire_id\":\"11434\",\"jersey\":\"6\",\"weight\":\"200\",\"id\":\"12907\",\"team\":\"FA\",\"cbs_id\":\"1996838\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11084\",\"stats_id\":\"29085\",\"position\":\"RB\",\"stats_global_id\":\"557180\",\"weight\":\"213\",\"id\":\"12908\",\"draft_team\":\"FA\",\"birthdate\":\"685688400\",\"name\":\"Brown, Mack\",\"college\":\"Florida\",\"rotowire_id\":\"10568\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"7dc5af64-ae1d-4915-8af9-a4f5fb601710\",\"team\":\"FA\",\"cbs_id\":\"2175090\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"OAK\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"OAK\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"PIT\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"NOS\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11769\",\"stats_id\":\"29618\",\"position\":\"WR\",\"stats_global_id\":\"615295\",\"weight\":\"190\",\"id\":\"12918\",\"draft_team\":\"FA\",\"birthdate\":\"746686800\",\"name\":\"Frazier, Mose\",\"college\":\"Memphis\",\"rotowire_id\":\"11387\",\"height\":\"71\",\"jersey\":\"14\",\"sportsdata_id\":\"dd2a688f-343d-4ea7-9508-4640cdbc1b1e\",\"team\":\"FA\",\"cbs_id\":\"1907604\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11933\",\"stats_id\":\"29854\",\"position\":\"WR\",\"stats_global_id\":\"608059\",\"weight\":\"168\",\"id\":\"12921\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Lewis, Tommylee\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11508\",\"height\":\"67\",\"jersey\":\"14\",\"sportsdata_id\":\"b103b096-6be9-4f87-9ae4-5d217f560685\",\"team\":\"FA\",\"cbs_id\":\"2237113\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11853\",\"stats_id\":\"29722\",\"position\":\"QB\",\"stats_global_id\":\"617316\",\"weight\":\"216\",\"id\":\"12925\",\"draft_team\":\"FA\",\"birthdate\":\"739170000\",\"name\":\"Callahan, Joe\",\"college\":\"Wesley College\",\"rotowire_id\":\"11441\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"c67e52b1-0801-4a6c-802c-32cdc78bb7c9\",\"team\":\"FA\",\"cbs_id\":\"2236877\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11741\",\"stats_id\":\"29588\",\"position\":\"LB\",\"stats_global_id\":\"594733\",\"weight\":\"238\",\"id\":\"12928\",\"draft_team\":\"FA\",\"birthdate\":\"723272400\",\"name\":\"Rhodes, Luke\",\"college\":\"William & Mary\",\"rotowire_id\":\"11414\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"8da0fe32-1758-44ed-9acf-21b3721cbd0d\",\"team\":\"IND\",\"cbs_id\":\"1825513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"LAC\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"NYJ\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11625\",\"stats_id\":\"29847\",\"position\":\"CB\",\"stats_global_id\":\"690768\",\"weight\":\"190\",\"id\":\"12931\",\"draft_team\":\"FA\",\"birthdate\":\"741416400\",\"name\":\"Harris, De'Vante\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11053\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"e5bd7067-d9ac-4aee-a073-3f345cf8191c\",\"team\":\"FA\",\"cbs_id\":\"1996270\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"IND\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"CHI\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10233\",\"stats_id\":\"28307\",\"position\":\"PN\",\"stats_global_id\":\"553515\",\"weight\":\"220\",\"id\":\"12945\",\"draft_team\":\"FA\",\"birthdate\":\"685861200\",\"name\":\"Redfern, Kasey\",\"college\":\"Wofford\",\"rotowire_id\":\"10131\",\"height\":\"73\",\"jersey\":\"1\",\"sportsdata_id\":\"728a0b65-0f9d-4af3-944b-b12cd74243bb\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11918\",\"stats_id\":\"29825\",\"position\":\"WR\",\"stats_global_id\":\"604926\",\"weight\":\"230\",\"id\":\"12949\",\"draft_team\":\"FA\",\"birthdate\":\"728024400\",\"name\":\"McEvoy, Tanner\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11561\",\"height\":\"78\",\"jersey\":\"87\",\"sportsdata_id\":\"8ac8cc85-6599-4956-819e-0887ccb72993\",\"team\":\"FA\",\"cbs_id\":\"2071784\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"93\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"FA\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11850\",\"birthdate\":\"710053200\",\"draft_team\":\"FA\",\"stats_id\":\"29716\",\"position\":\"LB\",\"name\":\"Grigsby, Nicholas\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"606732\",\"height\":\"73\",\"rotowire_id\":\"11573\",\"weight\":\"220\",\"sportsdata_id\":\"b8569ff2-bc1a-4b91-9830-c840e7b94549\",\"id\":\"12951\",\"team\":\"FA\",\"cbs_id\":\"1877152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"BAL\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11836\",\"stats_id\":\"29696\",\"position\":\"DT\",\"stats_global_id\":\"609331\",\"weight\":\"285\",\"id\":\"12953\",\"draft_team\":\"FA\",\"birthdate\":\"736837200\",\"name\":\"Lanier, Anthony\",\"college\":\"Alabama A&M\",\"rotowire_id\":\"11601\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"a46c1936-c00e-405a-82c8-297ebc2a7535\",\"team\":\"KCC\",\"cbs_id\":\"1890207\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"OAK\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11538\",\"stats_id\":\"29505\",\"position\":\"LB\",\"stats_global_id\":\"591933\",\"weight\":\"238\",\"id\":\"12958\",\"draft_team\":\"FA\",\"birthdate\":\"743058000\",\"name\":\"Norris, Jared\",\"college\":\"Utah\",\"rotowire_id\":\"11149\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"e7b9abe1-2a5f-4029-90f5-7fd174750093\",\"team\":\"FA\",\"cbs_id\":\"1825054\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11830\",\"stats_id\":\"29687\",\"position\":\"DT\",\"stats_global_id\":\"652597\",\"weight\":\"300\",\"id\":\"12960\",\"draft_team\":\"FA\",\"birthdate\":\"758610000\",\"name\":\"Vaeao, Destiny\",\"college\":\"Washington State\",\"rotowire_id\":\"11541\",\"height\":\"76\",\"jersey\":\"75\",\"sportsdata_id\":\"04ac7d14-68fc-4d70-b0f0-334dce9c1c45\",\"team\":\"FA\",\"cbs_id\":\"2237129\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"OAK\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"IND\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"NYG\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11780\",\"stats_id\":\"29630\",\"position\":\"DT\",\"stats_global_id\":\"844023\",\"weight\":\"305\",\"id\":\"12981\",\"draft_team\":\"FA\",\"birthdate\":\"743576400\",\"name\":\"Peko, Kyle\",\"college\":\"Oregon State\",\"rotowire_id\":\"11428\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"e9a7f92c-241c-4172-9874-6eb0c1576899\",\"team\":\"DEN\",\"cbs_id\":\"2160958\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11085\",\"stats_id\":\"29086\",\"position\":\"S\",\"stats_global_id\":\"607096\",\"weight\":\"200\",\"id\":\"12982\",\"draft_team\":\"FA\",\"birthdate\":\"728197200\",\"name\":\"Moore, Corey\",\"college\":\"Georgia\",\"rotowire_id\":\"10678\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"0f1b8946-54b9-43c3-8c9e-1778c6314e9b\",\"team\":\"FA\",\"cbs_id\":\"2175054\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LAR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"DAL\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11727\",\"stats_id\":\"29571\",\"position\":\"TE\",\"stats_global_id\":\"614284\",\"weight\":\"235\",\"id\":\"12996\",\"draft_team\":\"FA\",\"birthdate\":\"736318800\",\"name\":\"Cross, Alan\",\"college\":\"Memphis\",\"rotowire_id\":\"11406\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"cc1df018-baa8-4344-b13c-cd5ef1a52d26\",\"team\":\"FA\",\"cbs_id\":\"1906373\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11857\",\"stats_id\":\"29729\",\"position\":\"CB\",\"stats_global_id\":\"609734\",\"weight\":\"190\",\"id\":\"12997\",\"draft_team\":\"FA\",\"birthdate\":\"727765200\",\"name\":\"Hawkins, Josh\",\"college\":\"East Carolina\",\"rotowire_id\":\"11446\",\"height\":\"70\",\"jersey\":\"48\",\"sportsdata_id\":\"2f01f1dc-8e8c-4d74-95d9-1b36b42257fb\",\"team\":\"FA\",\"cbs_id\":\"1892161\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11664\",\"stats_id\":\"29818\",\"position\":\"LB\",\"stats_global_id\":\"696208\",\"weight\":\"240\",\"id\":\"13015\",\"draft_team\":\"FA\",\"birthdate\":\"780814800\",\"name\":\"Longa, Steve\",\"college\":\"Rutgers\",\"rotowire_id\":\"11118\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"54403340-5565-4fdb-82bf-60c9b38a9bac\",\"team\":\"DET\",\"cbs_id\":\"2001812\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"OAK\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11592\",\"stats_id\":\"29575\",\"position\":\"RB\",\"stats_global_id\":\"689907\",\"weight\":\"195\",\"id\":\"13019\",\"draft_team\":\"FA\",\"birthdate\":\"753685200\",\"name\":\"Hansbrough, Russell\",\"college\":\"Missouri\",\"rotowire_id\":\"11410\",\"height\":\"69\",\"jersey\":\"22\",\"sportsdata_id\":\"2f260f4a-e42d-4456-a361-24e6e5a0de23\",\"team\":\"FA\",\"cbs_id\":\"1996131\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"PHI\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"BAL\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11687\",\"stats_id\":\"29522\",\"position\":\"LB\",\"stats_global_id\":\"593290\",\"weight\":\"245\",\"id\":\"13043\",\"draft_team\":\"FA\",\"birthdate\":\"716446800\",\"name\":\"Landrum, Chris\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11476\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"b6e1d56a-8fc4-4ea7-a88e-52f281c6d4ba\",\"team\":\"HOU\",\"cbs_id\":\"2237246\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"IND\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11632\",\"stats_id\":\"29885\",\"position\":\"LB\",\"stats_global_id\":\"595939\",\"weight\":\"235\",\"id\":\"13045\",\"draft_team\":\"FA\",\"birthdate\":\"731134800\",\"name\":\"Smith, Terrance\",\"college\":\"Florida State\",\"rotowire_id\":\"11179\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"dc447507-2380-494c-96c9-e0edb2679a3c\",\"team\":\"FA\",\"cbs_id\":\"2237108\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11925\",\"stats_id\":\"29835\",\"position\":\"CB\",\"stats_global_id\":\"606736\",\"weight\":\"195\",\"id\":\"13052\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Pitts, Lafayette\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11596\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"8cfce145-c6aa-40e0-b759-cad33237144a\",\"team\":\"IND\",\"cbs_id\":\"1877156\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"DET\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"DET\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"OAK\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11995\",\"stats_id\":\"29944\",\"position\":\"TE\",\"stats_global_id\":\"607400\",\"weight\":\"245\",\"id\":\"13067\",\"draft_team\":\"FA\",\"birthdate\":\"729320400\",\"name\":\"Ellis, Alex\",\"college\":\"Tennessee\",\"rotowire_id\":\"11397\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"81fb7fa0-7ad9-4ef4-bc33-9df9574714e5\",\"team\":\"PHI\",\"cbs_id\":\"2237134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11761\",\"stats_id\":\"29797\",\"position\":\"DT\",\"stats_global_id\":\"748586\",\"weight\":\"295\",\"id\":\"13071\",\"draft_team\":\"FA\",\"birthdate\":\"720680400\",\"name\":\"Kamalu, Ufomba\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11084\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"e4b362e0-d43c-4279-b30f-15000dbc0591\",\"team\":\"BAL\",\"cbs_id\":\"2078989\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"SEA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11751\",\"stats_id\":\"29607\",\"position\":\"CB\",\"stats_global_id\":\"599683\",\"weight\":\"190\",\"id\":\"13075\",\"draft_team\":\"FA\",\"birthdate\":\"716533200\",\"name\":\"Milton, Chris\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11420\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3\",\"team\":\"TEN\",\"cbs_id\":\"1850781\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"CAR\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"DET\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"OAK\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12416\",\"stats_id\":\"30328\",\"position\":\"QB\",\"stats_global_id\":\"830889\",\"weight\":\"215\",\"id\":\"13117\",\"draft_team\":\"DET\",\"birthdate\":\"810104400\",\"name\":\"Kaaya, Brad\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"11835\",\"height\":\"76\",\"sportsdata_id\":\"5e5ea79d-7127-4e65-9cd5-b2a0a1fe910e\",\"team\":\"FA\",\"cbs_id\":\"2136468\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"JAC\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"BUF\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"IND\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"DAL\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"OAK\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"JAC\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"MIA\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"FA\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12358\",\"stats_id\":\"30245\",\"position\":\"RB\",\"stats_global_id\":\"746291\",\"weight\":\"176\",\"id\":\"13137\",\"draft_team\":\"PHI\",\"birthdate\":\"786690000\",\"name\":\"Pumphrey, Donnel\",\"draft_pick\":\"24\",\"college\":\"San Diego State\",\"rotowire_id\":\"11769\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"d9aecfba-a416-4d99-b26a-dfe78f876b73\",\"team\":\"FA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"NOS\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12200\",\"stats_id\":\"30354\",\"position\":\"RB\",\"stats_global_id\":\"823107\",\"weight\":\"230\",\"id\":\"13141\",\"draft_team\":\"OAK\",\"birthdate\":\"830149200\",\"name\":\"Hood, Elijah\",\"draft_pick\":\"24\",\"college\":\"North Carolina\",\"rotowire_id\":\"11706\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"385eccc0-c138-4cda-8c50-84b996d21b8f\",\"team\":\"FA\",\"cbs_id\":\"2130947\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"JAC\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"FA\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"TBB\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12511\",\"stats_id\":\"30370\",\"position\":\"RB\",\"stats_global_id\":\"727852\",\"weight\":\"199\",\"id\":\"13150\",\"draft_team\":\"FA\",\"birthdate\":\"816066000\",\"name\":\"Davis, Justin\",\"college\":\"Southern California\",\"rotowire_id\":\"11759\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b9b88174-d790-4ff2-85cd-fdbfa03405f6\",\"team\":\"FA\",\"cbs_id\":\"2061071\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12330\",\"birthdate\":\"815547600\",\"draft_team\":\"FA\",\"stats_id\":\"30553\",\"position\":\"WR\",\"name\":\"Cannon, KD\",\"college\":\"Baylor\",\"stats_global_id\":\"837957\",\"height\":\"71\",\"rotowire_id\":\"11693\",\"jersey\":\"81\",\"weight\":\"185\",\"id\":\"13159\",\"team\":\"FA\",\"cbs_id\":\"2141966\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12336\",\"stats_id\":\"30360\",\"position\":\"WR\",\"stats_global_id\":\"822012\",\"weight\":\"196\",\"id\":\"13160\",\"draft_team\":\"GBP\",\"birthdate\":\"813474000\",\"name\":\"Dupre, Malachi\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"11854\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e0a27785-ab78-4d51-8a8e-8fb9896956fd\",\"team\":\"FA\",\"cbs_id\":\"2131692\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"IND\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"MIA\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"PIT\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"PIT\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"NYJ\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"PHI\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12202\",\"stats_id\":\"30195\",\"position\":\"WR\",\"stats_global_id\":\"733840\",\"weight\":\"199\",\"id\":\"13171\",\"draft_team\":\"DEN\",\"birthdate\":\"787813200\",\"name\":\"Henderson, Carlos\",\"draft_pick\":\"18\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11859\",\"height\":\"71\",\"jersey\":\"11\",\"team\":\"FA\",\"cbs_id\":\"2060829\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12252\",\"stats_id\":\"30192\",\"position\":\"WR\",\"stats_global_id\":\"750855\",\"weight\":\"205\",\"id\":\"13173\",\"draft_team\":\"NYJ\",\"birthdate\":\"755326800\",\"name\":\"Stewart, ArDarius\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11720\",\"height\":\"72\",\"jersey\":\"13\",\"sportsdata_id\":\"20e86fb3-e716-4df3-82d6-f05caa83287e\",\"team\":\"FA\",\"cbs_id\":\"2818152\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"OAK\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12420\",\"stats_id\":\"30332\",\"position\":\"WR\",\"stats_global_id\":\"739798\",\"weight\":\"195\",\"id\":\"13177\",\"draft_team\":\"MIN\",\"birthdate\":\"768805200\",\"name\":\"Coley, Stacy\",\"draft_pick\":\"1\",\"college\":\"Miami\",\"rotowire_id\":\"11851\",\"height\":\"72\",\"jersey\":\"3\",\"sportsdata_id\":\"16cd3b59-18a2-40a0-9236-e222bed17044\",\"team\":\"FA\",\"cbs_id\":\"2071572\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"FA\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"HOU\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12382\",\"stats_id\":\"30288\",\"position\":\"WR\",\"stats_global_id\":\"749082\",\"weight\":\"220\",\"id\":\"13187\",\"draft_team\":\"GBP\",\"birthdate\":\"785134800\",\"name\":\"Yancey, DeAngelo\",\"draft_pick\":\"31\",\"college\":\"Purdue\",\"rotowire_id\":\"12206\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"591ce770-7ca3-49e0-965f-5a69a55f2c07\",\"team\":\"FA\",\"cbs_id\":\"2818289\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12275\",\"stats_id\":\"30314\",\"position\":\"TE\",\"stats_global_id\":\"742420\",\"weight\":\"257\",\"id\":\"13191\",\"draft_team\":\"MIN\",\"birthdate\":\"807858000\",\"name\":\"Hodges, Bucky\",\"draft_pick\":\"17\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11694\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"aad59ab5-1450-465d-96a6-fb10a9fca368\",\"team\":\"FA\",\"cbs_id\":\"2071631\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"TBB\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"FA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"MIA\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"90\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"MIA\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"ATL\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"PHI\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"75\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"NYJ\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DE\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DE\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"93\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"BAL\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"GBP\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"TBB\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"MIA\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"PHI\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"NYJ\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"LAC\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"NYJ\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12204\",\"stats_id\":\"30234\",\"position\":\"RB\",\"stats_global_id\":\"867383\",\"weight\":\"205\",\"id\":\"13237\",\"draft_team\":\"SFO\",\"birthdate\":\"747118800\",\"name\":\"Williams, Joe\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"rotowire_id\":\"11778\",\"height\":\"71\",\"jersey\":\"32\",\"team\":\"FA\",\"cbs_id\":\"2181023\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"PHI\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"NYG\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"MIA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"87\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"CHI\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"IND\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12292\",\"stats_id\":\"30166\",\"position\":\"CB\",\"stats_global_id\":\"820437\",\"weight\":\"191\",\"id\":\"13259\",\"draft_team\":\"DET\",\"birthdate\":\"820472400\",\"name\":\"Tabor, Teez\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"12052\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"6bbffdec-af71-4378-b0cc-e1375643ef57\",\"team\":\"FA\",\"cbs_id\":\"2131575\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"NEP\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"DAL\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"NEP\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"MIA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"IND\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"PHI\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12345\",\"stats_id\":\"30214\",\"position\":\"WR\",\"stats_global_id\":\"734330\",\"weight\":\"199\",\"id\":\"13282\",\"draft_team\":\"DEN\",\"birthdate\":\"782283600\",\"name\":\"Langley, Brendan\",\"draft_pick\":\"37\",\"college\":\"Lamar\",\"rotowire_id\":\"12022\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"dd50e8ab-518b-44a1-9c71-2bc2af74ee7c\",\"team\":\"FA\",\"cbs_id\":\"2061118\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"SEA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"SEA\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"MIN\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"WAS\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"CIN\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12280\",\"stats_id\":\"30261\",\"position\":\"LB\",\"stats_global_id\":\"697252\",\"weight\":\"238\",\"id\":\"13300\",\"draft_team\":\"JAC\",\"birthdate\":\"770014800\",\"name\":\"Brown, Blair\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"rotowire_id\":\"11962\",\"height\":\"72\",\"jersey\":\"53\",\"sportsdata_id\":\"900c4073-411b-4ef0-9188-fc4188ffe588\",\"team\":\"FA\",\"cbs_id\":\"2005510\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"CB\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"CB\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"NYJ\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"CB\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"MIA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"OAK\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12378\",\"stats_id\":\"30282\",\"position\":\"CB\",\"stats_global_id\":\"702498\",\"weight\":\"208\",\"id\":\"13311\",\"draft_team\":\"HOU\",\"birthdate\":\"744181200\",\"name\":\"Decoud, Treston\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"12012\",\"height\":\"75\",\"jersey\":\"34\",\"sportsdata_id\":\"ae269fa8-85d9-4d95-b0e2-6d0451dd9425\",\"team\":\"FA\",\"cbs_id\":\"2186790\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12381\",\"stats_id\":\"30286\",\"position\":\"CB\",\"stats_global_id\":\"652012\",\"weight\":\"215\",\"id\":\"13314\",\"draft_team\":\"PIT\",\"birthdate\":\"751179600\",\"name\":\"Allen, Brian\",\"draft_pick\":\"29\",\"college\":\"Utah\",\"rotowire_id\":\"12008\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"a5780ea2-376e-4187-8be1-7c7fd2d0a12f\",\"team\":\"SEA\",\"cbs_id\":\"1984447\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"48\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"CHI\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12390\",\"stats_id\":\"30296\",\"position\":\"LB\",\"stats_global_id\":\"691517\",\"weight\":\"239\",\"id\":\"13320\",\"draft_team\":\"KCC\",\"birthdate\":\"767422800\",\"name\":\"Eligwe, Ukeme\",\"draft_pick\":\"39\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12207\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"d8f5b9b5-4cbf-4817-969f-99e638313383\",\"team\":\"OAK\",\"cbs_id\":\"2818316\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12393\",\"stats_id\":\"30300\",\"position\":\"S\",\"stats_global_id\":\"749106\",\"weight\":\"210\",\"id\":\"13323\",\"draft_team\":\"SEA\",\"birthdate\":\"743749200\",\"name\":\"Tyson, Mike\",\"draft_pick\":\"3\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12006\",\"height\":\"73\",\"jersey\":\"32\",\"sportsdata_id\":\"24a25ff7-0690-4769-9dc9-8265ecdcf1f2\",\"team\":\"FA\",\"cbs_id\":\"2080253\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DT\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"LAR\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"BUF\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12401\",\"stats_id\":\"30311\",\"position\":\"CB\",\"stats_global_id\":\"696123\",\"weight\":\"220\",\"id\":\"13331\",\"draft_team\":\"NYJ\",\"birthdate\":\"772866000\",\"name\":\"Clark, Jeremy\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"12241\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"e055cf84-9602-468a-a960-5240cab53aff\",\"team\":\"FA\",\"cbs_id\":\"2001873\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12404\",\"stats_id\":\"30315\",\"position\":\"LB\",\"stats_global_id\":\"751753\",\"weight\":\"245\",\"id\":\"13333\",\"draft_team\":\"SFO\",\"birthdate\":\"763189200\",\"name\":\"Taumoepenu, Pita\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"11943\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c69c8d25-f81b-4240-a361-6bb328ad9474\",\"team\":\"SEA\",\"cbs_id\":\"2084363\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DT\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"HOU\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12429\",\"stats_id\":\"30341\",\"position\":\"DT\",\"stats_global_id\":\"727275\",\"weight\":\"301\",\"id\":\"13350\",\"draft_team\":\"DAL\",\"birthdate\":\"790750800\",\"name\":\"Ivie, Joey\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12051\",\"height\":\"75\",\"jersey\":\"90\",\"sportsdata_id\":\"4e710e1a-2654-4e2f-9be0-5b9941025477\",\"team\":\"TEN\",\"cbs_id\":\"2818344\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"MIA\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"SFO\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12438\",\"stats_id\":\"30351\",\"position\":\"RB\",\"stats_global_id\":\"867674\",\"weight\":\"237\",\"id\":\"13357\",\"draft_team\":\"GBP\",\"birthdate\":\"769928400\",\"name\":\"Mays, Devante\",\"draft_pick\":\"20\",\"college\":\"Utah State\",\"rotowire_id\":\"12219\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"b92d015f-0e5f-42e5-b85a-9c68ee6d8f1f\",\"team\":\"JAC\",\"cbs_id\":\"2818379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12441\",\"stats_id\":\"30355\",\"position\":\"RB\",\"stats_global_id\":\"746973\",\"weight\":\"174\",\"id\":\"13359\",\"draft_team\":\"TEN\",\"birthdate\":\"780555600\",\"name\":\"Muhammad, Khalfani\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"12089\",\"height\":\"67\",\"jersey\":\"33\",\"sportsdata_id\":\"d16f5060-d562-492b-9ab8-4a495920e808\",\"team\":\"DEN\",\"cbs_id\":\"2818380\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DT\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"WAS\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12445\",\"stats_id\":\"30361\",\"position\":\"LB\",\"stats_global_id\":\"744096\",\"weight\":\"240\",\"id\":\"13363\",\"draft_team\":\"PIT\",\"birthdate\":\"802587600\",\"name\":\"Adams, Keion\",\"draft_pick\":\"30\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12222\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"1b96851a-604d-423b-8bd7-f0d394bd6ca8\",\"team\":\"FA\",\"cbs_id\":\"2818383\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12448\",\"stats_id\":\"30363\",\"position\":\"DE\",\"stats_global_id\":\"694143\",\"weight\":\"270\",\"id\":\"13365\",\"draft_team\":\"DET\",\"birthdate\":\"752130000\",\"name\":\"O'Connor, Pat\",\"draft_pick\":\"32\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"12223\",\"height\":\"76\",\"jersey\":\"79\",\"sportsdata_id\":\"2157df58-ca82-46cd-9897-261a80060292\",\"team\":\"TBB\",\"cbs_id\":\"2818377\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12447\",\"stats_id\":\"30364\",\"position\":\"TE\",\"stats_global_id\":\"694088\",\"weight\":\"252\",\"id\":\"13366\",\"draft_team\":\"CIN\",\"birthdate\":\"752389200\",\"name\":\"Schreck, Mason\",\"draft_pick\":\"33\",\"college\":\"Buffalo\",\"rotowire_id\":\"12224\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"ca6c7b35-6ae1-4ba7-ae98-1f26174e407d\",\"team\":\"CIN\",\"cbs_id\":\"2818374\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"NOS\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12455\",\"stats_id\":\"30629\",\"position\":\"WR\",\"stats_global_id\":\"693822\",\"weight\":\"215\",\"id\":\"13371\",\"draft_team\":\"FA\",\"birthdate\":\"779259600\",\"name\":\"Hatcher, Keon\",\"college\":\"Arkansas\",\"rotowire_id\":\"11858\",\"height\":\"73\",\"jersey\":\"14\",\"sportsdata_id\":\"2f7650ef-1dcf-40f2-8ce5-f2090b6bc325\",\"team\":\"NYJ\",\"cbs_id\":\"1999934\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12470\",\"stats_id\":\"30720\",\"position\":\"WR\",\"stats_global_id\":\"728964\",\"weight\":\"209\",\"id\":\"13372\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Gentry, Tanner\",\"college\":\"Wyoming\",\"rotowire_id\":\"12353\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"47520723-6d02-4c3b-b786-a7dfcea15efc\",\"team\":\"FA\",\"cbs_id\":\"2819979\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"DET\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"SFO\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"CLE\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"WR\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"NOS\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"DET\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12981\",\"stats_id\":\"30899\",\"position\":\"WR\",\"stats_global_id\":\"748115\",\"weight\":\"210\",\"id\":\"13390\",\"draft_team\":\"FA\",\"birthdate\":\"792306000\",\"name\":\"Lenoir, Lance\",\"college\":\"Western Illinois\",\"rotowire_id\":\"12287\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"4f4f888c-08d3-4ea8-ab8f-0ddcf8bf195e\",\"team\":\"DAL\",\"cbs_id\":\"2838798\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"NOS\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"CLE\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"WAS\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"MIN\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"SEA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, Phillip\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"FA\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12896\",\"stats_id\":\"30808\",\"position\":\"WR\",\"stats_global_id\":\"702925\",\"weight\":\"198\",\"id\":\"13420\",\"draft_team\":\"FA\",\"birthdate\":\"740206800\",\"name\":\"McCarron, Riley\",\"college\":\"Iowa\",\"rotowire_id\":\"12307\",\"height\":\"69\",\"jersey\":\"17\",\"sportsdata_id\":\"ab9cf0fc-f4e4-4d18-8132-97e518eb14f3\",\"team\":\"FA\",\"cbs_id\":\"2820035\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12713\",\"stats_id\":\"30598\",\"position\":\"WR\",\"stats_global_id\":\"651709\",\"weight\":\"200\",\"id\":\"13421\",\"draft_team\":\"FA\",\"birthdate\":\"748846800\",\"name\":\"Reilly, Brandon\",\"college\":\"Nebraska\",\"rotowire_id\":\"12395\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"158a971d-dc66-4427-a3d4-a1ef2de37be6\",\"team\":\"FA\",\"cbs_id\":\"2819972\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"OAK\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DT\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"IND\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12914\",\"stats_id\":\"30827\",\"position\":\"WR\",\"stats_global_id\":\"734314\",\"weight\":\"185\",\"id\":\"13436\",\"draft_team\":\"FA\",\"birthdate\":\"817016400\",\"name\":\"Davis, Reggie\",\"college\":\"Georgia\",\"rotowire_id\":\"12146\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"3411b31b-9800-4f5b-a43f-4564c9530627\",\"team\":\"CHI\",\"cbs_id\":\"2820499\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"LAC\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"WAS\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12531\",\"stats_id\":\"30381\",\"position\":\"CB\",\"stats_global_id\":\"749955\",\"weight\":\"200\",\"id\":\"13440\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Luke, Cole\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12091\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"8e06b4a9-d210-465c-80b7-9bae20dc64b2\",\"team\":\"CAR\",\"cbs_id\":\"2818916\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12934\",\"stats_id\":\"30846\",\"position\":\"CB\",\"stats_global_id\":\"750318\",\"weight\":\"175\",\"id\":\"13441\",\"draft_team\":\"FA\",\"birthdate\":\"769928400\",\"name\":\"Hill, Jaylen\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12347\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"57d6fd4d-29e1-46cf-a3b0-601cc5b3d48d\",\"team\":\"FA\",\"cbs_id\":\"2820502\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12763\",\"stats_id\":\"30652\",\"position\":\"S\",\"stats_global_id\":\"750854\",\"weight\":\"194\",\"id\":\"13442\",\"draft_team\":\"FA\",\"birthdate\":\"803106000\",\"name\":\"Smith, Maurice\",\"college\":\"Georgia\",\"rotowire_id\":\"12149\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"486d1b54-2f4a-4fe1-8935-c8659a8dc942\",\"team\":\"WAS\",\"cbs_id\":\"2819220\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"ATL\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12452\",\"stats_id\":\"30736\",\"position\":\"LB\",\"stats_global_id\":\"746289\",\"weight\":\"243\",\"id\":\"13444\",\"draft_team\":\"FA\",\"birthdate\":\"788504400\",\"name\":\"Munson, Calvin\",\"college\":\"San Diego State\",\"rotowire_id\":\"12383\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"d3ba3eca-c71d-449b-b5f1-7397a9cab3f1\",\"team\":\"MIA\",\"cbs_id\":\"2820074\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"CIN\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12948\",\"stats_id\":\"30865\",\"position\":\"CB\",\"stats_global_id\":\"733254\",\"weight\":\"178\",\"id\":\"13449\",\"draft_team\":\"FA\",\"birthdate\":\"787294800\",\"name\":\"Hatfield, Dominique\",\"college\":\"Utah\",\"rotowire_id\":\"12317\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"2cf86b24-50e1-4047-83cb-afd82b17aa91\",\"team\":\"CAR\",\"cbs_id\":\"2820603\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11871\",\"stats_id\":\"29747\",\"position\":\"DT\",\"stats_global_id\":\"729627\",\"weight\":\"322\",\"id\":\"13453\",\"draft_team\":\"FA\",\"birthdate\":\"772434000\",\"name\":\"Price, Brian\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"11566\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"eddd3f47-fdd1-4d53-9e31-93b46624fd0f\",\"team\":\"FA\",\"cbs_id\":\"2083537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12610\",\"stats_id\":\"30477\",\"position\":\"CB\",\"stats_global_id\":\"691797\",\"weight\":\"195\",\"id\":\"13456\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Mabin, Greg\",\"college\":\"Iowa\",\"rotowire_id\":\"12406\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"593d31fd-212e-47a5-b3cc-0793cf075a98\",\"team\":\"CIN\",\"cbs_id\":\"2819111\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12869\",\"stats_id\":\"30778\",\"position\":\"DE\",\"stats_global_id\":\"693128\",\"weight\":\"275\",\"id\":\"13459\",\"draft_team\":\"FA\",\"birthdate\":\"784875600\",\"name\":\"Valoaga, Jeremiah\",\"college\":\"UNLV\",\"rotowire_id\":\"12312\",\"height\":\"78\",\"jersey\":\"78\",\"sportsdata_id\":\"27488f5f-e895-499b-9e33-fddd3d5d603c\",\"team\":\"OAK\",\"cbs_id\":\"2820225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"CLE\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"JAC\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"MIA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"NYJ\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"NYJ\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"CB\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"45\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12751\",\"stats_id\":\"30638\",\"position\":\"LB\",\"stats_global_id\":\"736808\",\"weight\":\"220\",\"id\":\"13472\",\"draft_team\":\"FA\",\"birthdate\":\"807685200\",\"name\":\"Woodson-Luster, Xavier\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12423\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"cbfc2a87-0ecf-4e5e-8d2d-2d171308f377\",\"team\":\"FA\",\"cbs_id\":\"2819160\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12564\",\"stats_id\":\"30424\",\"position\":\"LB\",\"stats_global_id\":\"741772\",\"weight\":\"225\",\"id\":\"13475\",\"draft_team\":\"FA\",\"birthdate\":\"786776400\",\"name\":\"Harris, Nigel\",\"college\":\"South Florida\",\"rotowire_id\":\"12355\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"57b80476-cfca-4d31-a7c3-cf84ea3261b0\",\"team\":\"TEN\",\"cbs_id\":\"2820091\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"GBP\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11934\",\"stats_id\":\"29856\",\"position\":\"DE\",\"stats_global_id\":\"610985\",\"weight\":\"285\",\"id\":\"13486\",\"draft_team\":\"FA\",\"birthdate\":\"729666000\",\"name\":\"Loewen, Mitchell\",\"college\":\"Arkansas\",\"rotowire_id\":\"11684\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"6c5ade3f-43c4-4153-b0ef-c9772bce8101\",\"team\":\"NOS\",\"cbs_id\":\"2237114\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11902\",\"stats_id\":\"29799\",\"position\":\"DE\",\"stats_global_id\":\"652649\",\"weight\":\"259\",\"id\":\"13493\",\"draft_team\":\"FA\",\"birthdate\":\"776149200\",\"name\":\"Lee, Eric\",\"college\":\"South Florida\",\"rotowire_id\":\"11273\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"944528d8-7647-4f92-8053-0e6998c5fcc1\",\"team\":\"FA\",\"cbs_id\":\"1985072\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11731\",\"stats_id\":\"29577\",\"position\":\"S\",\"stats_global_id\":\"605944\",\"weight\":\"209\",\"id\":\"13498\",\"draft_team\":\"FA\",\"birthdate\":\"719038800\",\"name\":\"Johnson, Isaiah\",\"college\":\"South Carolina\",\"rotowire_id\":\"11411\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"d37758ce-9e3c-4e3c-bb7b-b8eaf1c58541\",\"team\":\"FA\",\"cbs_id\":\"2066974\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"KCC\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"CIN\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11928\",\"stats_id\":\"29846\",\"position\":\"CB\",\"stats_global_id\":\"651757\",\"weight\":\"159\",\"id\":\"13509\",\"draft_team\":\"FA\",\"birthdate\":\"759733200\",\"name\":\"Deayon, Donte\",\"college\":\"Boise State\",\"rotowire_id\":\"11528\",\"height\":\"69\",\"jersey\":\"27\",\"sportsdata_id\":\"da918fe0-eb5d-42c7-b952-2f5da5197c20\",\"team\":\"LAR\",\"cbs_id\":\"1984676\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"14\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12478\",\"stats_id\":\"30559\",\"position\":\"TE\",\"stats_global_id\":\"698168\",\"weight\":\"240\",\"id\":\"13511\",\"draft_team\":\"FA\",\"birthdate\":\"771310800\",\"name\":\"Hikutini, Cole\",\"college\":\"Louisville\",\"rotowire_id\":\"11891\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"c4caac75-07d3-44b2-88ca-524e495a1a6b\",\"team\":\"DAL\",\"cbs_id\":\"2006894\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"CLE\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"LAR\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"CHI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"DE\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12617\",\"stats_id\":\"30482\",\"position\":\"WR\",\"stats_global_id\":\"696192\",\"weight\":\"220\",\"id\":\"13538\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Agudosi, Carlton\",\"college\":\"Rutgers\",\"rotowire_id\":\"12364\",\"height\":\"78\",\"jersey\":\"14\",\"sportsdata_id\":\"9bd7ed5d-968a-40c0-8dcd-25fcc2d4d47f\",\"team\":\"FA\",\"cbs_id\":\"2820053\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12072\",\"stats_id\":\"30024\",\"position\":\"TE\",\"stats_global_id\":\"703203\",\"weight\":\"240\",\"id\":\"13546\",\"draft_team\":\"FA\",\"birthdate\":\"762757200\",\"name\":\"Griffin, Garrett\",\"college\":\"Air Force\",\"rotowire_id\":\"11502\",\"height\":\"76\",\"jersey\":\"45\",\"sportsdata_id\":\"3cacaa27-a790-43ae-927c-8163b06f1a53\",\"team\":\"NOS\",\"cbs_id\":\"2239251\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11908\",\"stats_id\":\"29806\",\"position\":\"TE\",\"stats_global_id\":\"756569\",\"weight\":\"245\",\"id\":\"13549\",\"draft_team\":\"FA\",\"birthdate\":\"717138000\",\"name\":\"Vander Laan, Jason\",\"college\":\"Ferris State\",\"rotowire_id\":\"11585\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"1532328d-614e-4cd6-a43f-ff56073e2ff2\",\"team\":\"NOS\",\"cbs_id\":\"2236956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12484\",\"stats_id\":\"30405\",\"position\":\"DE\",\"stats_global_id\":\"606558\",\"weight\":\"242\",\"id\":\"13552\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Phillips, Carroll\",\"college\":\"Illinois\",\"rotowire_id\":\"11935\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"7840c637-976b-47e5-8831-09e1099c0484\",\"team\":\"FA\",\"cbs_id\":\"2008717\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12756\",\"stats_id\":\"30644\",\"position\":\"LB\",\"stats_global_id\":\"652212\",\"weight\":\"265\",\"id\":\"13559\",\"draft_team\":\"FA\",\"birthdate\":\"777531600\",\"name\":\"Malveaux, Cameron\",\"college\":\"Houston\",\"rotowire_id\":\"12057\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"8b44e3b8-81ae-4f02-b598-965872d12816\",\"team\":\"WAS\",\"cbs_id\":\"2819214\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12890\",\"stats_id\":\"30802\",\"position\":\"DT\",\"stats_global_id\":\"1050928\",\"weight\":\"300\",\"id\":\"13562\",\"draft_team\":\"FA\",\"birthdate\":\"731307600\",\"name\":\"Ross, Daniel\",\"college\":\"Northeast Mississippi CC\",\"rotowire_id\":\"12455\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"8bfbee63-feb4-4862-b3c8-08d2f65c8b5f\",\"team\":\"DAL\",\"cbs_id\":\"2820038\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12464\",\"stats_id\":\"30471\",\"position\":\"LB\",\"stats_global_id\":\"696156\",\"weight\":\"228\",\"id\":\"13563\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Bullough, Riley\",\"college\":\"Michigan State\",\"rotowire_id\":\"11964\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"63de92e7-69a9-494f-b2a6-43aa67ad325c\",\"team\":\"FA\",\"cbs_id\":\"2001904\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"TEN\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12911\",\"stats_id\":\"30825\",\"position\":\"S\",\"stats_global_id\":\"728214\",\"weight\":\"199\",\"id\":\"13567\",\"draft_team\":\"FA\",\"birthdate\":\"754635600\",\"name\":\"Thomas, Dymonte\",\"college\":\"Michigan\",\"rotowire_id\":\"12474\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"7e408bdc-df1a-44bf-878e-8cc790c40a3e\",\"team\":\"FA\",\"cbs_id\":\"2820121\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12001\",\"stats_id\":\"29953\",\"position\":\"WR\",\"stats_global_id\":\"604906\",\"weight\":\"190\",\"id\":\"13573\",\"draft_team\":\"FA\",\"birthdate\":\"744613200\",\"name\":\"Brent, K.J.\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11512\",\"height\":\"76\",\"jersey\":\"15\",\"sportsdata_id\":\"01a4e683-068c-4ae2-bb93-4940abc7c53a\",\"team\":\"FA\",\"cbs_id\":\"2237228\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"MIA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"PIT\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"NYJ\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13303\",\"stats_id\":\"31173\",\"position\":\"QB\",\"stats_global_id\":\"729555\",\"weight\":\"217\",\"id\":\"13599\",\"draft_team\":\"JAC\",\"birthdate\":\"792738000\",\"name\":\"Lee, Tanner\",\"draft_pick\":\"29\",\"college\":\"Nebraska\",\"rotowire_id\":\"12491\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"ca457f6a-eb43-418a-97a7-4f4304dc5875\",\"team\":\"FA\",\"cbs_id\":\"2061670\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"PHI\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13371\",\"stats_id\":\"31560\",\"position\":\"RB\",\"stats_global_id\":\"840742\",\"weight\":\"211\",\"id\":\"13603\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Flowers, Quinton\",\"college\":\"South Florida\",\"rotowire_id\":\"12652\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"4c54672f-f0f5-47ff-9d98-33137e3c0773\",\"team\":\"FA\",\"cbs_id\":\"2145752\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"WAS\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13214\",\"birthdate\":\"795070800\",\"draft_team\":\"FA\",\"stats_id\":\"31622\",\"position\":\"RB\",\"name\":\"Wadley, Akrum\",\"college\":\"Iowa\",\"stats_global_id\":\"740737\",\"height\":\"70\",\"rotowire_id\":\"12783\",\"jersey\":\"38\",\"weight\":\"194\",\"id\":\"13609\",\"team\":\"FA\",\"cbs_id\":\"2071707\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"DET\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"LAR\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"MIA\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13419\",\"stats_id\":\"31653\",\"position\":\"RB\",\"stats_global_id\":\"744665\",\"weight\":\"200\",\"id\":\"13625\",\"draft_team\":\"FA\",\"birthdate\":\"785394000\",\"name\":\"Webb, Ralph\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12744\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"e8a4e5aa-f17b-49fe-8b8b-8efac0fc40f4\",\"team\":\"PIT\",\"cbs_id\":\"2079834\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"SFO\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"FA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"BUF\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13386\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Cobbs, Simmie\",\"college\":\"Indiana\",\"stats_global_id\":\"0\",\"rotowire_id\":\"12480\",\"sportsdata_id\":\"1dea7b00-f200-470f-8912-ca9d87ceb7e2\",\"id\":\"13643\",\"team\":\"FA\",\"cbs_id\":\"2924881\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"OAK\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"BUF\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13749\",\"stats_id\":\"31598\",\"position\":\"WR\",\"stats_global_id\":\"836953\",\"weight\":\"201\",\"id\":\"13655\",\"draft_team\":\"FA\",\"birthdate\":\"819090000\",\"name\":\"Phillips, Cam\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12898\",\"height\":\"72\",\"jersey\":\"87\",\"sportsdata_id\":\"14b0de01-a0f1-491f-86fe-01f83478046d\",\"team\":\"FA\",\"cbs_id\":\"2139174\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"WAS\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"CLE\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"BAL\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"WAS\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"SEA\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13785\",\"stats_id\":\"31646\",\"position\":\"WR\",\"stats_global_id\":\"744671\",\"weight\":\"200\",\"id\":\"13670\",\"draft_team\":\"FA\",\"birthdate\":\"807598800\",\"name\":\"Andrews, Darren\",\"college\":\"UCLA\",\"rotowire_id\":\"13186\",\"height\":\"70\",\"jersey\":\"16\",\"sportsdata_id\":\"396c3f6d-db27-431e-a3fa-e5a6c12eba7a\",\"team\":\"FA\",\"cbs_id\":\"2926812\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"757573200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"BAL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"OAK\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"OAK\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13200\",\"stats_id\":\"31385\",\"position\":\"CB\",\"stats_global_id\":\"883451\",\"weight\":\"204\",\"id\":\"13712\",\"draft_team\":\"FA\",\"birthdate\":\"854427600\",\"name\":\"McFadden, Tarvarus\",\"college\":\"Florida State\",\"rotowire_id\":\"12580\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"bb4823e2-f2d4-4910-8528-a762f8db449b\",\"team\":\"FA\",\"cbs_id\":\"2185893\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"36\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"JAC\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"OAK\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13683\",\"stats_id\":\"31514\",\"position\":\"RB\",\"stats_global_id\":\"884299\",\"weight\":\"246\",\"id\":\"13725\",\"draft_team\":\"FA\",\"birthdate\":\"834037200\",\"name\":\"Warren, Chris\",\"college\":\"Texas\",\"rotowire_id\":\"12867\",\"height\":\"74\",\"jersey\":\"34\",\"sportsdata_id\":\"86b05ebc-a22f-46a4-b521-67cc0b1fa206\",\"team\":\"FA\",\"cbs_id\":\"2092162\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12518\",\"stats_id\":\"30756\",\"position\":\"TE\",\"stats_global_id\":\"1050875\",\"weight\":\"255\",\"id\":\"13728\",\"draft_team\":\"FA\",\"birthdate\":\"732603600\",\"name\":\"Brown, Billy\",\"college\":\"Shepherd\",\"rotowire_id\":\"11848\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"4571c406-9d68-4b0e-9772-9d6069ef17f3\",\"team\":\"IND\",\"cbs_id\":\"2820079\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"97\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"DEN\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"KCC\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"TBB\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"OAK\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"CLE\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"47\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"S\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"NYG\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"DEN\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"OAK\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"S\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SFO\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"37\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"DEN\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"CIN\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13279\",\"stats_id\":\"31143\",\"position\":\"PN\",\"stats_global_id\":\"748627\",\"weight\":\"205\",\"id\":\"13792\",\"draft_team\":\"OAK\",\"birthdate\":\"792738000\",\"name\":\"Townsend, Johnny\",\"draft_pick\":\"36\",\"college\":\"Florida\",\"rotowire_id\":\"12777\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"2eb0706c-3017-4895-a207-71d6fe9e1549\",\"team\":\"FA\",\"cbs_id\":\"2079770\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"CLE\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"DET\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"JAC\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"DE\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"S\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"34\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"WAS\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13291\",\"stats_id\":\"31159\",\"position\":\"S\",\"stats_global_id\":\"836078\",\"weight\":\"200\",\"id\":\"13805\",\"draft_team\":\"NOS\",\"birthdate\":\"844146000\",\"name\":\"Moore, Kamrin\",\"draft_pick\":\"15\",\"college\":\"Boston College\",\"rotowire_id\":\"12959\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"d4590268-6931-43a1-b794-d9a684c508db\",\"team\":\"FA\",\"cbs_id\":\"2139097\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"WR\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"LAC\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"DAL\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DE\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"PHI\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"49\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"NYJ\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13305\",\"stats_id\":\"31175\",\"position\":\"LB\",\"stats_global_id\":\"820896\",\"weight\":\"259\",\"id\":\"13817\",\"draft_team\":\"LAR\",\"birthdate\":\"796712400\",\"name\":\"Young, Trevon\",\"draft_pick\":\"31\",\"college\":\"Louisville\",\"rotowire_id\":\"12962\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"36b878c8-7d53-4e90-8403-6f67fa911a2e\",\"team\":\"CLE\",\"cbs_id\":\"2131985\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"HOU\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"ARI\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13316\",\"stats_id\":\"31188\",\"position\":\"DE\",\"stats_global_id\":\"729544\",\"weight\":\"263\",\"id\":\"13823\",\"draft_team\":\"MIN\",\"birthdate\":\"767422800\",\"name\":\"Aruna, Ade\",\"draft_pick\":\"44\",\"college\":\"Tulane\",\"rotowire_id\":\"12915\",\"height\":\"77\",\"jersey\":\"68\",\"sportsdata_id\":\"596fa903-35a6-4650-b499-bc3ce33d5103\",\"team\":\"OAK\",\"cbs_id\":\"2061661\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"ATL\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"HOU\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13320\",\"stats_id\":\"31192\",\"position\":\"CB\",\"stats_global_id\":\"747898\",\"weight\":\"195\",\"id\":\"13827\",\"draft_team\":\"HOU\",\"name\":\"Kelly, Jermaine\",\"draft_pick\":\"4\",\"college\":\"San Jose State\",\"rotowire_id\":\"13001\",\"height\":\"73\",\"sportsdata_id\":\"30c9d379-80f5-4d53-a05f-2aca8c208e8f\",\"team\":\"FA\",\"cbs_id\":\"2079702\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"SFO\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13324\",\"stats_id\":\"31196\",\"position\":\"RB\",\"stats_global_id\":\"744612\",\"weight\":\"229\",\"id\":\"13830\",\"draft_team\":\"DEN\",\"birthdate\":\"771829200\",\"name\":\"Williams, David\",\"draft_pick\":\"8\",\"college\":\"Arkansas\",\"rotowire_id\":\"13005\",\"height\":\"73\",\"jersey\":\"49\",\"sportsdata_id\":\"f9e352ee-a6f6-4b92-8683-1867739d6d94\",\"team\":\"FA\",\"cbs_id\":\"2082707\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13325\",\"stats_id\":\"31197\",\"position\":\"LB\",\"stats_global_id\":\"744085\",\"weight\":\"235\",\"id\":\"13831\",\"draft_team\":\"MIA\",\"birthdate\":\"777099600\",\"name\":\"Poling, Quentin\",\"draft_pick\":\"9\",\"college\":\"Ohio\",\"rotowire_id\":\"13006\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"2feb5241-ab81-4907-b660-ef8e92976224\",\"team\":\"FA\",\"cbs_id\":\"2079546\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13329\",\"stats_id\":\"31202\",\"position\":\"DE\",\"stats_global_id\":\"733671\",\"weight\":\"287\",\"id\":\"13835\",\"draft_team\":\"GBP\",\"birthdate\":\"800514000\",\"name\":\"Looney, James\",\"draft_pick\":\"14\",\"college\":\"California\",\"rotowire_id\":\"12714\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"ccb8ccf7-fa57-4d2a-8907-b55ebb8fa3fe\",\"team\":\"GBP\",\"cbs_id\":\"2060491\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"CAR\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13339\",\"stats_id\":\"31212\",\"position\":\"DT\",\"stats_global_id\":\"880134\",\"weight\":\"318\",\"id\":\"13842\",\"draft_team\":\"CAR\",\"birthdate\":\"865659600\",\"name\":\"Norton, Kendrick\",\"draft_pick\":\"24\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12588\",\"height\":\"75\",\"jersey\":\"75\",\"sportsdata_id\":\"be1314f9-5b2a-495d-be64-579158fd29eb\",\"team\":\"MIA\",\"cbs_id\":\"2183855\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"birthdate\":\"698907600\",\"draft_team\":\"FA\",\"stats_id\":\"30711\",\"position\":\"PN\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"11829\",\"weight\":\"194\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"id\":\"13848\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13191\",\"stats_id\":\"31410\",\"position\":\"LB\",\"stats_global_id\":\"838212\",\"weight\":\"227\",\"id\":\"13852\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"Scales, Tegray\",\"college\":\"Indiana\",\"rotowire_id\":\"12704\",\"height\":\"72\",\"jersey\":\"46\",\"sportsdata_id\":\"80637f09-673d-45fe-b874-bdb1a9c20ee6\",\"team\":\"FA\",\"cbs_id\":\"2141743\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13581\",\"stats_id\":\"31395\",\"position\":\"S\",\"stats_global_id\":\"836244\",\"weight\":\"210\",\"id\":\"13854\",\"draft_team\":\"FA\",\"birthdate\":\"830926800\",\"name\":\"Blanding, Quin\",\"college\":\"Virginia\",\"rotowire_id\":\"12816\",\"height\":\"74\",\"jersey\":\"37\",\"sportsdata_id\":\"f58c28b8-262c-44b3-ab15-992c362e3f43\",\"team\":\"CAR\",\"cbs_id\":\"2139033\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13837\",\"stats_id\":\"31705\",\"position\":\"WR\",\"stats_global_id\":\"952047\",\"weight\":\"196\",\"id\":\"13858\",\"draft_team\":\"FA\",\"birthdate\":\"838270800\",\"name\":\"Alexander, Deontez\",\"college\":\"Franklin\",\"rotowire_id\":\"13309\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"7ecb04f9-b8b7-419b-9f73-8a7f55804074\",\"team\":\"FA\",\"cbs_id\":\"2926949\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13876\",\"stats_id\":\"31747\",\"position\":\"TE\",\"stats_global_id\":\"840790\",\"weight\":\"230\",\"id\":\"13861\",\"draft_team\":\"FA\",\"birthdate\":\"817966800\",\"name\":\"Roberts, Austin\",\"college\":\"UCLA\",\"rotowire_id\":\"12583\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"184a2ef6-ddec-41e4-8fc1-87ac713e8831\",\"team\":\"FA\",\"cbs_id\":\"2930093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"PHI\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"6\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13582\",\"stats_id\":\"31396\",\"position\":\"RB\",\"stats_global_id\":\"844831\",\"weight\":\"195\",\"id\":\"13865\",\"draft_team\":\"FA\",\"birthdate\":\"731566800\",\"name\":\"Carter, Martez\",\"college\":\"Grambling State\",\"rotowire_id\":\"12893\",\"height\":\"67\",\"jersey\":\"35\",\"sportsdata_id\":\"77002a9a-fa1d-4040-b7d5-976159aae433\",\"team\":\"FA\",\"cbs_id\":\"2925142\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13879\",\"stats_id\":\"31762\",\"position\":\"CB\",\"stats_global_id\":\"868023\",\"weight\":\"205\",\"id\":\"13867\",\"draft_team\":\"FA\",\"birthdate\":\"847342800\",\"name\":\"Alexander, Adonis\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"13354\",\"height\":\"75\",\"jersey\":\"36\",\"sportsdata_id\":\"ff214afc-4e6a-48c1-986e-d52271c6ad8e\",\"team\":\"LAR\",\"cbs_id\":\"2951189\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"ATL\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13811\",\"stats_id\":\"31680\",\"position\":\"TE\",\"stats_global_id\":\"746513\",\"weight\":\"225\",\"id\":\"13872\",\"draft_team\":\"FA\",\"birthdate\":\"801810000\",\"name\":\"Hunt, Cole\",\"college\":\"TCU\",\"rotowire_id\":\"13052\",\"height\":\"79\",\"jersey\":\"81\",\"sportsdata_id\":\"8e73bb69-7907-4220-a09d-d97efc006606\",\"team\":\"FA\",\"cbs_id\":\"2926543\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"TEN\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13605\",\"stats_id\":\"31423\",\"position\":\"RB\",\"stats_global_id\":\"910402\",\"weight\":\"240\",\"id\":\"13875\",\"draft_team\":\"FA\",\"birthdate\":\"786949200\",\"name\":\"Thompson, Mark\",\"college\":\"Florida\",\"rotowire_id\":\"13108\",\"height\":\"73\",\"jersey\":\"49\",\"sportsdata_id\":\"9ceb92c0-25d4-4e05-848f-1ddce1774410\",\"team\":\"OAK\",\"cbs_id\":\"2925520\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"BUF\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"JAC\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"CAR\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13769\",\"stats_id\":\"31626\",\"position\":\"WR\",\"stats_global_id\":\"911523\",\"weight\":\"221\",\"id\":\"13881\",\"draft_team\":\"FA\",\"birthdate\":\"803883600\",\"name\":\"Veasy, Jordan\",\"college\":\"California\",\"rotowire_id\":\"13304\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"fb815f81-3759-4194-bff9-1982fb2dd9a0\",\"team\":\"WAS\",\"cbs_id\":\"2926603\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"NOS\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13833\",\"stats_id\":\"31701\",\"position\":\"WR\",\"stats_global_id\":\"822636\",\"weight\":\"190\",\"id\":\"13883\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Patterson, Damoun\",\"college\":\"Youngstown State\",\"rotowire_id\":\"13020\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"c8eaac0c-9d03-49f3-9188-ba9e856e3b49\",\"team\":\"FA\",\"cbs_id\":\"2926931\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12814\",\"stats_id\":\"30713\",\"position\":\"S\",\"stats_global_id\":\"1050850\",\"weight\":\"200\",\"id\":\"13886\",\"draft_team\":\"FA\",\"birthdate\":\"752130000\",\"name\":\"Sullivan, Tre\",\"college\":\"Shepherd\",\"rotowire_id\":\"12407\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"5cd06df7-8ae9-4b20-b710-f07e39930cfa\",\"team\":\"FA\",\"cbs_id\":\"2820083\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"BUF\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13816\",\"stats_id\":\"31685\",\"position\":\"RB\",\"stats_global_id\":\"834487\",\"weight\":\"210\",\"id\":\"13891\",\"draft_team\":\"FA\",\"birthdate\":\"762930000\",\"name\":\"Newsome, Detrez\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13057\",\"height\":\"70\",\"jersey\":\"38\",\"sportsdata_id\":\"65def267-986f-4d5d-96fb-42b9209833b1\",\"team\":\"FA\",\"cbs_id\":\"2926546\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13388\",\"stats_id\":\"31490\",\"position\":\"QB\",\"stats_global_id\":\"868034\",\"weight\":\"230\",\"id\":\"13892\",\"draft_team\":\"FA\",\"birthdate\":\"812869200\",\"name\":\"Litton, Chase\",\"college\":\"Marshall\",\"rotowire_id\":\"12638\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"e1767e07-8ccd-479e-b356-b7024084518f\",\"team\":\"FA\",\"cbs_id\":\"2182351\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13022\",\"stats_id\":\"30934\",\"position\":\"DE\",\"stats_global_id\":\"695410\",\"weight\":\"280\",\"id\":\"13894\",\"draft_team\":\"FA\",\"birthdate\":\"762498000\",\"name\":\"Davis, Keionta\",\"college\":\"Chattanooga\",\"rotowire_id\":\"11911\",\"height\":\"76\",\"jersey\":\"58\",\"sportsdata_id\":\"8725d38b-398b-4ca5-9e80-d43b0bf855bb\",\"team\":\"NEP\",\"cbs_id\":\"2001442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13836\",\"stats_id\":\"31704\",\"position\":\"RB\",\"stats_global_id\":\"838246\",\"weight\":\"212\",\"id\":\"13896\",\"draft_team\":\"FA\",\"birthdate\":\"810190800\",\"name\":\"Martin, Robert\",\"college\":\"Rutgers\",\"rotowire_id\":\"13312\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"845d6938-ca66-42a3-8913-1772bb8de446\",\"team\":\"FA\",\"cbs_id\":\"2926972\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13369\",\"birthdate\":\"875336400\",\"draft_team\":\"FA\",\"stats_id\":\"31377\",\"position\":\"LB\",\"name\":\"Holland, Jeff\",\"college\":\"Auburn\",\"stats_global_id\":\"880544\",\"height\":\"74\",\"rotowire_id\":\"12553\",\"weight\":\"249\",\"sportsdata_id\":\"0f57f7d4-41b1-400d-bec5-09da91d825f1\",\"id\":\"13897\",\"team\":\"LAR\",\"cbs_id\":\"2183969\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"TEN\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13555\",\"stats_id\":\"31369\",\"position\":\"WR\",\"stats_global_id\":\"836224\",\"weight\":\"212\",\"id\":\"13899\",\"draft_team\":\"FA\",\"birthdate\":\"806043600\",\"name\":\"Ishmael, Steve\",\"college\":\"Syracuse\",\"rotowire_id\":\"13075\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"dd75b91c-07ff-4aa2-8409-02841824fee2\",\"team\":\"IND\",\"cbs_id\":\"2925153\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13503\",\"stats_id\":\"31310\",\"position\":\"PK\",\"stats_global_id\":\"733640\",\"weight\":\"165\",\"id\":\"13901\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"McCrane, Matthew\",\"college\":\"Kansas State\",\"rotowire_id\":\"12712\",\"height\":\"70\",\"jersey\":\"3\",\"sportsdata_id\":\"bd49c4a4-1314-45e1-bff5-fc67ba41d1dd\",\"team\":\"FA\",\"cbs_id\":\"2926505\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13395\",\"birthdate\":\"806302800\",\"draft_team\":\"FA\",\"stats_id\":\"31532\",\"position\":\"LB\",\"name\":\"Thomas, Matthew\",\"college\":\"Florida State\",\"stats_global_id\":\"742156\",\"height\":\"75\",\"rotowire_id\":\"12748\",\"weight\":\"232\",\"sportsdata_id\":\"fdc9f4af-b677-44b3-947d-d7fd18e77390\",\"id\":\"13903\",\"team\":\"FA\",\"cbs_id\":\"2926332\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13675\",\"stats_id\":\"31506\",\"position\":\"WR\",\"stats_global_id\":\"746179\",\"weight\":\"173\",\"id\":\"13904\",\"draft_team\":\"FA\",\"birthdate\":\"753771600\",\"name\":\"Grant, Janarion\",\"college\":\"Rutgers\",\"rotowire_id\":\"12760\",\"height\":\"70\",\"jersey\":\"84\",\"sportsdata_id\":\"393cdcc9-20ec-4d07-b8bf-6848398b6ab8\",\"team\":\"FA\",\"cbs_id\":\"2925882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13814\",\"stats_id\":\"31683\",\"position\":\"WR\",\"stats_global_id\":\"1116519\",\"weight\":\"174\",\"id\":\"13905\",\"draft_team\":\"FA\",\"birthdate\":\"723618000\",\"name\":\"Jones, J.J.\",\"college\":\"West Georgia\",\"rotowire_id\":\"13055\",\"height\":\"70\",\"jersey\":\"84\",\"sportsdata_id\":\"d5d86ddc-97e5-4acf-867f-a2a741071c22\",\"team\":\"FA\",\"cbs_id\":\"2926544\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"DEN\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"NYJ\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13642\",\"stats_id\":\"31462\",\"position\":\"WR\",\"stats_global_id\":\"740743\",\"weight\":\"207\",\"id\":\"13911\",\"draft_team\":\"FA\",\"birthdate\":\"782370000\",\"name\":\"Willies, Derrick\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13138\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"bdeddbb2-2b56-4b46-915b-19eb71fbbe45\",\"team\":\"FA\",\"cbs_id\":\"2925538\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"JAC\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"PHI\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12648\",\"stats_id\":\"30517\",\"position\":\"RB\",\"stats_global_id\":\"695140\",\"weight\":\"230\",\"id\":\"13924\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Ortiz, Ricky\",\"college\":\"Oregon State\",\"rotowire_id\":\"12118\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"f0b08802-f6f8-4dba-b53e-e26eb75a32e7\",\"team\":\"NOS\",\"cbs_id\":\"2819136\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13546\",\"stats_id\":\"31356\",\"position\":\"LB\",\"stats_global_id\":\"839369\",\"weight\":\"230\",\"id\":\"13932\",\"draft_team\":\"FA\",\"birthdate\":\"848466000\",\"name\":\"Ellerbee, Emmanuel\",\"college\":\"Rice\",\"rotowire_id\":\"13090\",\"height\":\"72\",\"jersey\":\"52\",\"sportsdata_id\":\"68c82358-44df-4884-9e5d-f5102435c32d\",\"team\":\"SEA\",\"cbs_id\":\"2141992\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"FA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"MIA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"NOS\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"CHI\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"NYG\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"MIA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"TEN\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"MIA\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13717\",\"stats_id\":\"31551\",\"position\":\"WR\",\"stats_global_id\":\"788342\",\"weight\":\"191\",\"id\":\"13969\",\"draft_team\":\"FA\",\"birthdate\":\"797144400\",\"name\":\"Davis, Jawill\",\"college\":\"Bethune-Cookman\",\"rotowire_id\":\"13275\",\"height\":\"73\",\"jersey\":\"1\",\"sportsdata_id\":\"0f28eda1-8042-4d0c-9392-81ef58be62a5\",\"team\":\"FA\",\"cbs_id\":\"2926576\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13158\",\"stats_id\":\"31270\",\"position\":\"CB\",\"stats_global_id\":\"884951\",\"weight\":\"209\",\"id\":\"13973\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Meeks, Quenton\",\"college\":\"Stanford\",\"rotowire_id\":\"12614\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"f3de155c-da4f-4487-abb5-76225a8e3c17\",\"team\":\"LAC\",\"cbs_id\":\"2186837\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13881\",\"stats_id\":\"31751\",\"position\":\"TE\",\"stats_global_id\":\"830838\",\"weight\":\"252\",\"id\":\"13978\",\"draft_team\":\"FA\",\"birthdate\":\"820299600\",\"name\":\"Dickerson, Garrett\",\"college\":\"Northwestern\",\"rotowire_id\":\"13357\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"a9a138f8-372d-4d49-9e6e-5e423ce885fb\",\"team\":\"NYG\",\"cbs_id\":\"2931450\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"11585\",\"birthdate\":\"762066000\",\"draft_team\":\"FA\",\"stats_id\":\"29728\",\"position\":\"TE\",\"name\":\"Grinnage, David\",\"college\":\"North Carolina State\",\"stats_global_id\":\"691627\",\"height\":\"77\",\"rotowire_id\":\"10777\",\"jersey\":\"86\",\"weight\":\"265\",\"id\":\"13979\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13839\",\"stats_id\":\"31708\",\"position\":\"LB\",\"stats_global_id\":\"821446\",\"weight\":\"229\",\"id\":\"13987\",\"draft_team\":\"FA\",\"birthdate\":\"818917200\",\"name\":\"Spillane, Robert\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13306\",\"height\":\"73\",\"jersey\":\"49\",\"sportsdata_id\":\"3b59e08c-0c3b-42c9-a4e2-9b79103ea715\",\"team\":\"PIT\",\"cbs_id\":\"2926962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DT\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13393\",\"stats_id\":\"31486\",\"position\":\"WR\",\"stats_global_id\":\"879280\",\"weight\":\"190\",\"id\":\"13991\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Henderson, Quadree\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12461\",\"height\":\"68\",\"jersey\":\"81\",\"sportsdata_id\":\"e120460b-5596-49ba-a601-b3d9ef9f5883\",\"team\":\"PIT\",\"cbs_id\":\"2179416\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13368\",\"stats_id\":\"31614\",\"position\":\"LB\",\"stats_global_id\":\"748317\",\"weight\":\"245\",\"id\":\"13993\",\"draft_team\":\"FA\",\"birthdate\":\"791182800\",\"name\":\"Deluca, Nick\",\"college\":\"North Dakota State\",\"rotowire_id\":\"12793\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"d9625727-d02c-45c9-ac7c-eeb0a910a970\",\"team\":\"FA\",\"cbs_id\":\"2081319\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"CLE\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13724\",\"stats_id\":\"31561\",\"position\":\"TE\",\"stats_global_id\":\"838400\",\"weight\":\"240\",\"id\":\"13995\",\"draft_team\":\"FA\",\"birthdate\":\"823150800\",\"name\":\"Franks, Jordan\",\"college\":\"UCF\",\"rotowire_id\":\"13247\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"501aa2d9-4202-40e8-810b-92cacea26cd7\",\"team\":\"CIN\",\"cbs_id\":\"2926472\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"NYG\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11584\",\"stats_id\":\"29584\",\"position\":\"LB\",\"stats_global_id\":\"683404\",\"weight\":\"252\",\"id\":\"14002\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"McKinzy, Cassanova\",\"college\":\"Auburn\",\"rotowire_id\":\"11135\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"555ad7d1-ee7a-4679-b24e-0cbee3ca680d\",\"team\":\"FA\",\"cbs_id\":\"1995673\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13653\",\"stats_id\":\"31479\",\"position\":\"WR\",\"stats_global_id\":\"835780\",\"weight\":\"212\",\"id\":\"14009\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Blacknall, Saeed\",\"college\":\"Penn State\",\"rotowire_id\":\"13028\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"6427f177-527b-435a-bcd1-27cf913f7e24\",\"team\":\"FA\",\"cbs_id\":\"2139290\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13460\",\"stats_id\":\"31258\",\"position\":\"S\",\"stats_global_id\":\"742451\",\"weight\":\"212\",\"id\":\"14011\",\"draft_team\":\"FA\",\"birthdate\":\"779173200\",\"name\":\"Igwebuike, Godwin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12725\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"be8e5962-f2d9-4316-9fdf-212a95dbb590\",\"team\":\"FA\",\"cbs_id\":\"2071750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13515\",\"stats_id\":\"31322\",\"position\":\"WR\",\"stats_global_id\":\"1115408\",\"weight\":\"210\",\"id\":\"14015\",\"draft_team\":\"FA\",\"birthdate\":\"820299600\",\"name\":\"Tolliver, Jalen\",\"college\":\"Arkansas-Monticello\",\"rotowire_id\":\"13220\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"56143424-550f-4929-8e0f-13ebf556f8e2\",\"team\":\"FA\",\"cbs_id\":\"2926512\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"BUF\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13756\",\"stats_id\":\"31609\",\"position\":\"CB\",\"stats_global_id\":\"821257\",\"weight\":\"203\",\"id\":\"14026\",\"draft_team\":\"FA\",\"birthdate\":\"809586000\",\"name\":\"Kalu, Joshua\",\"college\":\"Nebraska\",\"rotowire_id\":\"12720\",\"height\":\"72\",\"jersey\":\"46\",\"sportsdata_id\":\"ab741f46-d660-48f2-a910-774d0514d2e4\",\"team\":\"TEN\",\"cbs_id\":\"2131098\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13735\",\"stats_id\":\"31576\",\"position\":\"S\",\"stats_global_id\":\"831671\",\"weight\":\"200\",\"id\":\"14028\",\"draft_team\":\"FA\",\"birthdate\":\"819781200\",\"name\":\"Neal, Ryan\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13282\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"67c2f38f-b568-4bcf-a40f-750cef707a05\",\"team\":\"SEA\",\"cbs_id\":\"2136964\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13747\",\"stats_id\":\"31595\",\"position\":\"RB\",\"stats_global_id\":\"747985\",\"weight\":\"219\",\"id\":\"14029\",\"draft_team\":\"FA\",\"birthdate\":\"766645200\",\"name\":\"Ford, Keith\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12894\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"63a42b17-bb3e-4e68-970f-aa2fffee4d10\",\"team\":\"FA\",\"cbs_id\":\"2926778\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13734\",\"stats_id\":\"31575\",\"position\":\"RB\",\"stats_global_id\":\"747892\",\"weight\":\"216\",\"id\":\"14035\",\"draft_team\":\"FA\",\"birthdate\":\"787035600\",\"name\":\"Coleman, Lavon\",\"college\":\"Washington\",\"rotowire_id\":\"12895\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"fa890b86-8204-40b0-ab8a-301a35d15ad6\",\"team\":\"FA\",\"cbs_id\":\"2079695\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13674\",\"stats_id\":\"31504\",\"position\":\"LB\",\"stats_global_id\":\"839219\",\"weight\":\"224\",\"id\":\"14039\",\"draft_team\":\"FA\",\"birthdate\":\"811054800\",\"name\":\"Wint, Anthony\",\"college\":\"Florida International\",\"rotowire_id\":\"13160\",\"height\":\"72\",\"jersey\":\"52\",\"sportsdata_id\":\"8bcda483-4714-4caf-bd21-4e64884a1ab3\",\"team\":\"FA\",\"cbs_id\":\"2143040\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13853\",\"stats_id\":\"31723\",\"position\":\"S\",\"stats_global_id\":\"750720\",\"weight\":\"195\",\"id\":\"14043\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Leavitt, Dallin\",\"college\":\"Utah State\",\"rotowire_id\":\"13318\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"c281fdc7-76a9-4734-a13d-19ad354c67db\",\"team\":\"OAK\",\"cbs_id\":\"2926966\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"DET\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13850\",\"stats_id\":\"31722\",\"position\":\"WR\",\"stats_global_id\":\"743761\",\"weight\":\"180\",\"id\":\"14046\",\"draft_team\":\"FA\",\"birthdate\":\"795589200\",\"name\":\"Kidsy, Darvin\",\"college\":\"Texas Southern\",\"rotowire_id\":\"13321\",\"height\":\"72\",\"jersey\":\"84\",\"sportsdata_id\":\"c99cb557-3364-4755-a353-82737ba1de6b\",\"team\":\"WAS\",\"cbs_id\":\"2926932\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13939\",\"birthdate\":\"154933200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Kitchens, Freddie\",\"stats_global_id\":\"0\",\"id\":\"14051\",\"team\":\"FA\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13991\",\"stats_id\":\"31812\",\"position\":\"PK\",\"stats_global_id\":\"824434\",\"weight\":\"175\",\"id\":\"14053\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Jones, Redford\",\"college\":\"Tulsa\",\"rotowire_id\":\"13827\",\"height\":\"70\",\"jersey\":\"6\",\"sportsdata_id\":\"b893faf2-b13f-4177-b62e-1d2e1e7ba087\",\"team\":\"FA\",\"cbs_id\":\"2132082\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"status\":\"R\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"status\":\"R\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"status\":\"R\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"status\":\"R\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"status\":\"R\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"status\":\"R\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"status\":\"R\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"status\":\"R\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"status\":\"R\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"DAL\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"status\":\"R\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14306\",\"status\":\"R\",\"stats_id\":\"32366\",\"position\":\"QB\",\"stats_global_id\":\"879962\",\"weight\":\"225\",\"id\":\"14066\",\"draft_team\":\"FA\",\"birthdate\":\"847256400\",\"name\":\"Shurmur, Kyle\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13663\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"ba1032c6-bcbd-430c-afae-40898b9e83bb\",\"team\":\"FA\",\"cbs_id\":\"2180561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"status\":\"R\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"status\":\"R\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"status\":\"R\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"status\":\"R\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"status\":\"R\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"status\":\"R\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"status\":\"R\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"OAK\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"status\":\"R\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"GBP\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"status\":\"R\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"status\":\"R\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"status\":\"R\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"FA\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"HOU\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"status\":\"R\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"status\":\"R\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"40\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"status\":\"R\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"status\":\"R\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"23\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"status\":\"R\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"status\":\"R\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"status\":\"R\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"status\":\"R\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"status\":\"R\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"status\":\"R\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"CIN\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14330\",\"status\":\"R\",\"stats_id\":\"32226\",\"position\":\"RB\",\"stats_global_id\":\"865555\",\"weight\":\"212\",\"id\":\"14089\",\"draft_team\":\"FA\",\"birthdate\":\"825742800\",\"name\":\"Brossette, Nick\",\"college\":\"LSU\",\"rotowire_id\":\"13524\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"86d0d3b3-5400-4fc8-943e-cb0a92d69e77\",\"team\":\"FA\",\"cbs_id\":\"2180613\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14749\",\"birthdate\":\"842763600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32569\",\"position\":\"RB\",\"name\":\"Scott, LJ\",\"college\":\"Michigan State\",\"stats_global_id\":\"884262\",\"height\":\"72\",\"rotowire_id\":\"13443\",\"weight\":\"227\",\"id\":\"14090\",\"team\":\"FA\",\"cbs_id\":\"2186433\"},{\"draft_year\":\"2019\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Watson, Tre\",\"college\":\"Texas\",\"stats_global_id\":\"0\",\"height\":\"71\",\"weight\":\"195\",\"id\":\"14091\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"status\":\"R\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"NYJ\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"status\":\"R\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"status\":\"R\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"CAR\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"status\":\"R\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"38\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"DET\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"status\":\"R\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"status\":\"R\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"status\":\"R\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"GBP\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"status\":\"R\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"PIT\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14609\",\"birthdate\":\"833518800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32404\",\"position\":\"RB\",\"name\":\"Evans, Nico\",\"college\":\"Wyoming\",\"stats_global_id\":\"823870\",\"height\":\"69\",\"rotowire_id\":\"14270\",\"weight\":\"211\",\"id\":\"14100\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"status\":\"R\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"status\":\"R\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"status\":\"R\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"status\":\"R\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"status\":\"R\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"status\":\"R\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"ARI\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"status\":\"R\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"status\":\"R\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"LAR\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"status\":\"R\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"status\":\"R\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"status\":\"R\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"CIN\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"status\":\"R\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"status\":\"R\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"status\":\"R\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"status\":\"R\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"WAS\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"status\":\"R\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"status\":\"R\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"status\":\"R\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"NOS\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"status\":\"R\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"PIT\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"status\":\"R\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"MIA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"status\":\"R\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"89\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"status\":\"R\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"status\":\"R\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"OAK\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"status\":\"R\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"status\":\"R\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"status\":\"R\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"status\":\"R\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14339\",\"status\":\"R\",\"stats_id\":\"32088\",\"position\":\"WR\",\"stats_global_id\":\"830940\",\"weight\":\"211\",\"id\":\"14128\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Brady, Tyre\",\"college\":\"Marshall\",\"rotowire_id\":\"13759\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"642a4938-360e-44c2-b52c-3a1ea8e59952\",\"team\":\"FA\",\"cbs_id\":\"2136460\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"status\":\"R\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"MIN\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"status\":\"R\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32469\",\"position\":\"WR\",\"stats_global_id\":\"866112\",\"weight\":\"205\",\"id\":\"14131\",\"draft_team\":\"FA\",\"birthdate\":\"873608400\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"rotowire_id\":\"13877\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"status\":\"R\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"PIT\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Tarver, Ron'Quavion\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13606\",\"id\":\"14133\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"status\":\"R\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"ARI\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14347\",\"status\":\"R\",\"stats_id\":\"32098\",\"position\":\"WR\",\"stats_global_id\":\"944033\",\"weight\":\"189\",\"id\":\"14135\",\"draft_team\":\"FA\",\"name\":\"Snelson, Dredrick\",\"college\":\"Central Florida\",\"rotowire_id\":\"13552\",\"height\":\"71\",\"jersey\":\"81\",\"sportsdata_id\":\"1d54c51b-6782-4231-9835-f7c279b86670\",\"team\":\"FA\",\"cbs_id\":\"3117045\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"status\":\"R\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"status\":\"R\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"status\":\"R\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"status\":\"R\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"KCC\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"status\":\"R\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"status\":\"R\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"status\":\"R\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"status\":\"R\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"status\":\"R\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"status\":\"R\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"WAS\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"status\":\"R\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"status\":\"R\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"31858\",\"position\":\"LB\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"status\":\"R\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"status\":\"R\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"status\":\"R\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"OAK\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"status\":\"R\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"DAL\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"status\":\"R\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"97\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"status\":\"R\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"status\":\"R\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"status\":\"R\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"PHI\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"status\":\"R\",\"stats_id\":\"31835\",\"position\":\"DT\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"status\":\"R\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"status\":\"R\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"status\":\"R\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"status\":\"R\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"status\":\"R\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"status\":\"R\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"status\":\"R\",\"stats_id\":\"31903\",\"position\":\"DT\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DT\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"MIA\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"status\":\"R\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"BAL\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"status\":\"R\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"status\":\"R\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"status\":\"R\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"status\":\"R\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"status\":\"R\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"status\":\"R\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"OAK\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"status\":\"R\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14355\",\"birthdate\":\"876286800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32453\",\"position\":\"LB\",\"name\":\"Lamar, Tre\",\"college\":\"Clemson\",\"stats_global_id\":\"913532\",\"height\":\"75\",\"rotowire_id\":\"13571\",\"jersey\":\"59\",\"weight\":\"253\",\"id\":\"14174\",\"team\":\"FA\",\"cbs_id\":\"2239522\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"status\":\"R\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"TEN\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"status\":\"R\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"status\":\"R\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"status\":\"R\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"NYG\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"status\":\"R\",\"stats_id\":\"31940\",\"position\":\"CB\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"status\":\"R\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"status\":\"R\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"OAK\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"status\":\"R\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"status\":\"R\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"status\":\"R\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"OAK\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"status\":\"R\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"status\":\"R\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"PK\",\"name\":\"Tracy, Cole\",\"college\":\"LSU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13825\",\"id\":\"14187\",\"team\":\"FA\",\"cbs_id\":\"2962027\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13890\",\"stats_id\":\"31758\",\"position\":\"WR\",\"stats_global_id\":\"1120577\",\"weight\":\"195\",\"id\":\"14188\",\"draft_team\":\"FA\",\"birthdate\":\"795070800\",\"name\":\"Crockett, Josh\",\"college\":\"Central Oklahoma\",\"rotowire_id\":\"13363\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"f858a3b1-7ecd-4caa-be5e-7d1e6b66523b\",\"team\":\"FA\",\"cbs_id\":\"2935907\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"11705\",\"stats_id\":\"29540\",\"position\":\"WR\",\"stats_global_id\":\"604826\",\"weight\":\"190\",\"id\":\"14189\",\"draft_team\":\"FA\",\"birthdate\":\"741934800\",\"name\":\"Michel, Marken\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11501\",\"height\":\"71\",\"jersey\":\"80\",\"sportsdata_id\":\"fa7983c1-408c-4aa5-9723-efbf039db351\",\"team\":\"PHI\",\"cbs_id\":\"1853070\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"status\":\"R\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"status\":\"R\",\"stats_id\":\"32368\",\"position\":\"RB\",\"stats_global_id\":\"868331\",\"weight\":\"205\",\"id\":\"14192\",\"draft_team\":\"FA\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"rotowire_id\":\"13549\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"11629\",\"stats_id\":\"29710\",\"position\":\"WR\",\"stats_global_id\":\"697261\",\"weight\":\"218\",\"id\":\"14193\",\"draft_team\":\"FA\",\"birthdate\":\"717742800\",\"name\":\"Russell, Alonzo\",\"college\":\"Toledo\",\"rotowire_id\":\"11165\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"3de3804d-1b80-4f3d-81f9-bdf6d03561b0\",\"team\":\"FA\",\"cbs_id\":\"2005514\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"status\":\"R\",\"stats_id\":\"31822\",\"position\":\"RB\",\"stats_global_id\":\"1164428\",\"weight\":\"185\",\"id\":\"14194\",\"draft_team\":\"FA\",\"birthdate\":\"674283600\",\"name\":\"Wade, Christian\",\"rotowire_id\":\"13930\",\"height\":\"67\",\"jersey\":\"45\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"team\":\"BUF\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"status\":\"R\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13865\",\"birthdate\":\"777877200\",\"draft_team\":\"FA\",\"stats_id\":\"31734\",\"position\":\"QB\",\"name\":\"Perez, Luis\",\"college\":\"Texas A&M\",\"stats_global_id\":\"895714\",\"height\":\"75\",\"rotowire_id\":\"13078\",\"weight\":\"218\",\"sportsdata_id\":\"90395591-32e3-42e8-962f-1f82f7cd6e75\",\"id\":\"14196\",\"team\":\"FA\",\"cbs_id\":\"2927085\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"draft_team\":\"GBP\",\"status\":\"R\",\"draft_pick\":\"21\",\"position\":\"S\",\"name\":\"Savage, Darnell\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13810\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"id\":\"14197\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"status\":\"R\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"status\":\"R\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"status\":\"R\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"status\":\"R\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"status\":\"R\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"status\":\"R\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"status\":\"R\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"status\":\"R\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"height\":\"75\",\"rotowire_id\":\"13514\",\"jersey\":\"79\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"status\":\"R\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"status\":\"R\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"status\":\"R\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"status\":\"R\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"status\":\"R\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"status\":\"R\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"status\":\"R\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"status\":\"R\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"status\":\"R\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"status\":\"R\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"status\":\"R\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"status\":\"R\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"status\":\"R\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"status\":\"R\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"status\":\"R\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"status\":\"R\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"status\":\"R\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"status\":\"R\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"status\":\"R\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"OAK\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"status\":\"R\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"status\":\"R\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"status\":\"R\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"status\":\"R\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"status\":\"R\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"status\":\"R\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"status\":\"R\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"status\":\"R\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"status\":\"R\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"OAK\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"status\":\"R\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"status\":\"R\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"status\":\"R\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"status\":\"R\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"status\":\"R\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"OAK\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"status\":\"R\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"status\":\"R\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"status\":\"R\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"NYG\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"status\":\"R\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"status\":\"R\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"TBB\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"status\":\"R\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"status\":\"R\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"BUF\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"status\":\"R\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"status\":\"R\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"status\":\"R\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"status\":\"R\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"DEN\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"status\":\"R\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"status\":\"R\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"DET\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"status\":\"R\",\"stats_id\":\"31991\",\"position\":\"DE\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"status\":\"R\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"status\":\"R\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"status\":\"R\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"status\":\"R\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"status\":\"R\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"2\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CLE\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"status\":\"R\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"status\":\"R\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"status\":\"R\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"SEA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"status\":\"R\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"NOS\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"status\":\"R\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYG\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"status\":\"R\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"status\":\"R\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"DET\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"status\":\"R\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"status\":\"R\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"DEN\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"status\":\"R\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"status\":\"R\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"status\":\"R\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"status\":\"R\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"CHI\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"status\":\"R\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14267\",\"status\":\"R\",\"stats_id\":\"32030\",\"position\":\"CB\",\"stats_global_id\":\"745844\",\"weight\":\"205\",\"id\":\"14273\",\"draft_team\":\"SFO\",\"birthdate\":\"807166800\",\"name\":\"Harris, Tim\",\"draft_pick\":\"25\",\"college\":\"Virginia\",\"rotowire_id\":\"13692\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"e289cb0a-2447-458a-a47b-5f843c0edd3c\",\"team\":\"SFO\",\"cbs_id\":\"3116595\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"status\":\"R\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"IND\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"status\":\"R\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"status\":\"R\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"status\":\"R\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"PHI\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"status\":\"R\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"status\":\"R\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"status\":\"R\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14276\",\"status\":\"R\",\"stats_id\":\"32041\",\"position\":\"DT\",\"stats_global_id\":\"834985\",\"weight\":\"302\",\"id\":\"14281\",\"draft_team\":\"SEA\",\"birthdate\":\"804834000\",\"name\":\"Christmas, Demarcus\",\"draft_pick\":\"36\",\"college\":\"Florida State\",\"rotowire_id\":\"13662\",\"height\":\"75\",\"jersey\":\"67\",\"sportsdata_id\":\"5f644070-97f1-4b7a-b0b1-4a341ac10771\",\"team\":\"SEA\",\"cbs_id\":\"2138983\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14277\",\"status\":\"R\",\"stats_id\":\"32042\",\"position\":\"LB\",\"stats_global_id\":\"835141\",\"weight\":\"236\",\"id\":\"14282\",\"draft_team\":\"CIN\",\"birthdate\":\"820386000\",\"name\":\"Davis, Deshaun\",\"draft_pick\":\"37\",\"college\":\"Auburn\",\"rotowire_id\":\"13754\",\"height\":\"71\",\"jersey\":\"48\",\"sportsdata_id\":\"5c972829-e159-49de-9aa8-edf961b39850\",\"team\":\"FA\",\"cbs_id\":\"2139788\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"status\":\"R\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"status\":\"R\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14279\",\"status\":\"R\",\"stats_id\":\"32047\",\"position\":\"DT\",\"stats_global_id\":\"882332\",\"weight\":\"296\",\"id\":\"14285\",\"draft_team\":\"TBB\",\"birthdate\":\"857278800\",\"name\":\"Beckner, Terry\",\"draft_pick\":\"1\",\"college\":\"Missouri\",\"rotowire_id\":\"13842\",\"height\":\"76\",\"jersey\":\"73\",\"sportsdata_id\":\"b8c4a63d-775b-47c6-9be3-ef321658c600\",\"team\":\"FA\",\"cbs_id\":\"2185466\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"status\":\"R\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"status\":\"R\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14284\",\"status\":\"R\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14288\",\"draft_team\":\"CLE\",\"birthdate\":\"837925200\",\"name\":\"Lewis, Donnie\",\"draft_pick\":\"7\",\"college\":\"Tulane\",\"rotowire_id\":\"13780\",\"height\":\"72\",\"sportsdata_id\":\"750877e5-ccdd-4072-9e1c-8d957e45b561\",\"team\":\"CLE\",\"cbs_id\":\"3116624\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"status\":\"R\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"PIT\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14192\",\"status\":\"R\",\"stats_id\":\"32055\",\"position\":\"CB\",\"stats_global_id\":\"840248\",\"weight\":\"201\",\"id\":\"14290\",\"draft_team\":\"CIN\",\"birthdate\":\"827816400\",\"name\":\"Brown, Jordan\",\"draft_pick\":\"9\",\"college\":\"South Dakota State\",\"rotowire_id\":\"13547\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"198b8c48-abe7-4fcb-9aea-6519fa650b18\",\"team\":\"OAK\",\"cbs_id\":\"2142869\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"status\":\"R\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"status\":\"R\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"status\":\"R\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"status\":\"R\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"status\":\"R\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"status\":\"R\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"status\":\"R\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"SEA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"status\":\"R\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"FA\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14196\",\"status\":\"R\",\"stats_id\":\"32070\",\"position\":\"CB\",\"stats_global_id\":\"1165637\",\"weight\":\"220\",\"id\":\"14299\",\"draft_team\":\"CHI\",\"birthdate\":\"829976400\",\"name\":\"Denmark, Stephen\",\"draft_pick\":\"24\",\"college\":\"Valdosta State\",\"rotowire_id\":\"13966\",\"height\":\"75\",\"jersey\":\"35\",\"sportsdata_id\":\"44750689-c0ca-4d26-86eb-ed40882f00f6\",\"team\":\"CHI\",\"cbs_id\":\"3116650\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14234\",\"status\":\"R\",\"stats_id\":\"32073\",\"position\":\"DE\",\"stats_global_id\":\"835879\",\"weight\":\"260\",\"id\":\"14300\",\"draft_team\":\"DAL\",\"birthdate\":\"839048400\",\"name\":\"Jelks, Jalen\",\"draft_pick\":\"27\",\"college\":\"Oregon\",\"rotowire_id\":\"13807\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"38bf12bf-5a77-4b2a-9d2a-e63008fe8be1\",\"team\":\"DAL\",\"cbs_id\":\"2139593\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"status\":\"R\",\"stats_id\":\"32074\",\"position\":\"DE\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"status\":\"R\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"status\":\"R\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14298\",\"status\":\"R\",\"stats_id\":\"32077\",\"position\":\"DT\",\"stats_global_id\":\"836233\",\"weight\":\"316\",\"id\":\"14304\",\"draft_team\":\"NYG\",\"birthdate\":\"838875600\",\"name\":\"Slayton, Chris\",\"draft_pick\":\"31\",\"college\":\"Syracuse\",\"rotowire_id\":\"13707\",\"height\":\"76\",\"jersey\":\"99\",\"sportsdata_id\":\"f413306f-0134-467d-82d0-df73f5f7bbe5\",\"team\":\"NYG\",\"cbs_id\":\"2139153\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"status\":\"R\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"status\":\"R\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"status\":\"R\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"status\":\"R\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"MIA\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14230\",\"status\":\"R\",\"stats_id\":\"32085\",\"position\":\"LB\",\"stats_global_id\":\"835401\",\"weight\":\"252\",\"id\":\"14309\",\"draft_team\":\"WAS\",\"birthdate\":\"813214800\",\"name\":\"Brailford, Jordan\",\"draft_pick\":\"39\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13435\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"cd9b9d93-4368-4495-803e-f5d2524c8468\",\"team\":\"WAS\",\"cbs_id\":\"2139240\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"status\":\"R\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"TBB\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14289\",\"status\":\"R\",\"stats_id\":\"32061\",\"position\":\"DT\",\"stats_global_id\":\"878242\",\"weight\":\"320\",\"id\":\"14311\",\"draft_team\":\"DET\",\"birthdate\":\"834728400\",\"name\":\"Johnson, P.J.\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"13573\",\"height\":\"75\",\"jersey\":\"92\",\"sportsdata_id\":\"344f10b9-b272-4f2f-8d1e-468f38f59f5e\",\"team\":\"LAC\",\"cbs_id\":\"3116652\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14022\",\"status\":\"R\",\"stats_id\":\"31819\",\"position\":\"PK\",\"stats_global_id\":\"742386\",\"weight\":\"195\",\"id\":\"14312\",\"draft_team\":\"FA\",\"birthdate\":\"799390800\",\"name\":\"Blewitt, Chris\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13896\",\"height\":\"69\",\"jersey\":\"2\",\"sportsdata_id\":\"d2be306a-9244-42f7-a3f6-46595f59f850\",\"team\":\"FA\",\"cbs_id\":\"2071581\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"status\":\"R\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"NOS\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"status\":\"R\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"IND\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"status\":\"R\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"status\":\"R\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"1\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"status\":\"R\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"OAK\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"status\":\"R\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"status\":\"R\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13437\",\"birthdate\":\"775803600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Badet, Jeff\",\"college\":\"Oklahoma\",\"stats_global_id\":\"746896\",\"height\":\"71\",\"rotowire_id\":\"12739\",\"jersey\":\"13\",\"weight\":\"182\",\"sportsdata_id\":\"e98ce252-583a-4c74-a718-d38f1ba5793d\",\"id\":\"14320\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"status\":\"R\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"SEA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"status\":\"R\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"12113\",\"status\":\"R\",\"stats_id\":\"30063\",\"position\":\"WR\",\"stats_global_id\":\"704783\",\"weight\":\"213\",\"id\":\"14323\",\"draft_team\":\"FA\",\"birthdate\":\"728542800\",\"name\":\"Horn, Reece\",\"college\":\"Indianapolis\",\"rotowire_id\":\"11398\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"f28143c1-321c-4c45-a717-c154ee4cb6a4\",\"team\":\"FA\",\"cbs_id\":\"2239232\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"status\":\"R\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"CHI\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14307\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Dineen, Joe\",\"college\":\"Kansas\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13769\",\"jersey\":\"53\",\"weight\":\"235\",\"sportsdata_id\":\"c66e5f22-10ad-41fb-9fde-52598df5fba7\",\"id\":\"14325\",\"team\":\"FA\",\"cbs_id\":\"3116707\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14197\",\"status\":\"R\",\"stats_id\":\"32434\",\"position\":\"LB\",\"stats_global_id\":\"884374\",\"weight\":\"241\",\"id\":\"14326\",\"draft_team\":\"FA\",\"birthdate\":\"818312400\",\"name\":\"Hanks, Terrill\",\"college\":\"New Mexico State\",\"rotowire_id\":\"13792\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"fcba2ad8-5b56-4d42-8250-937e58a6e6e4\",\"team\":\"MIA\",\"cbs_id\":\"2186449\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14331\",\"status\":\"R\",\"stats_id\":\"32302\",\"position\":\"WR\",\"stats_global_id\":\"877762\",\"weight\":\"219\",\"id\":\"14327\",\"draft_team\":\"FA\",\"birthdate\":\"870411600\",\"name\":\"Smith, Jaylen\",\"college\":\"Louisville\",\"rotowire_id\":\"13431\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"203f2976-1311-41d7-b630-3cc237cba516\",\"team\":\"FA\",\"cbs_id\":\"2181185\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"status\":\"R\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"status\":\"R\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"NYG\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"status\":\"R\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"status\":\"R\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"status\":\"R\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"NYG\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"status\":\"R\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"DET\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13541\",\"birthdate\":\"803192400\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Gray, Devin\",\"college\":\"Cincinnati\",\"stats_global_id\":\"911032\",\"height\":\"72\",\"rotowire_id\":\"13085\",\"jersey\":\"15\",\"weight\":\"192\",\"sportsdata_id\":\"35b82de6-eded-4f37-9bcd-33eb8ed001bd\",\"id\":\"14334\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"status\":\"R\",\"stats_id\":\"31831\",\"position\":\"PK\",\"stats_global_id\":\"744596\",\"weight\":\"189\",\"id\":\"14335\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"rotowire_id\":\"13943\",\"height\":\"72\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"team\":\"FA\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"status\":\"R\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"DAL\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"status\":\"R\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32238\",\"position\":\"RB\",\"stats_global_id\":\"836057\",\"weight\":\"226\",\"id\":\"14338\",\"draft_team\":\"FA\",\"birthdate\":\"816325200\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"rotowire_id\":\"14082\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"team\":\"NYG\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"birthdate\":\"755067600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"12121\",\"jersey\":\"13\",\"weight\":\"178\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"id\":\"14339\",\"team\":\"TBB\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14309\",\"status\":\"R\",\"stats_id\":\"32159\",\"position\":\"WR\",\"stats_global_id\":\"824132\",\"weight\":\"212\",\"id\":\"14340\",\"draft_team\":\"FA\",\"birthdate\":\"802069200\",\"name\":\"Richardson, A.J.\",\"college\":\"Boise State\",\"rotowire_id\":\"14043\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"3ad7f1fa-2389-4cea-94a1-28c5479ca542\",\"team\":\"ARI\",\"cbs_id\":\"3117015\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"status\":\"R\",\"stats_id\":\"32456\",\"position\":\"TE\",\"stats_global_id\":\"875649\",\"weight\":\"240\",\"id\":\"14341\",\"draft_team\":\"FA\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"rotowire_id\":\"13602\",\"height\":\"80\",\"jersey\":\"46\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"team\":\"FA\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"CIN\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"status\":\"R\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"CAR\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14025\",\"status\":\"R\",\"stats_id\":\"31821\",\"position\":\"WR\",\"stats_global_id\":\"1164241\",\"weight\":\"181\",\"id\":\"14349\",\"draft_team\":\"FA\",\"birthdate\":\"792824400\",\"name\":\"Sheehy-Guiseppi, Damon\",\"college\":\"Phoenix CC\",\"rotowire_id\":\"13929\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"66d4dece-9484-4970-b97a-5d26eec3c9d1\",\"team\":\"FA\",\"cbs_id\":\"3112891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"birthdate\":\"789022800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"stats_global_id\":\"744162\",\"height\":\"72\",\"rotowire_id\":\"12734\",\"jersey\":\"46\",\"weight\":\"230\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"id\":\"14350\",\"team\":\"DAL\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13863\",\"birthdate\":\"724222800\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"McElroy, Codey\",\"college\":\"Southeastern Oklahoma\",\"stats_global_id\":\"901152\",\"height\":\"78\",\"rotowire_id\":\"13341\",\"jersey\":\"84\",\"weight\":\"255\",\"sportsdata_id\":\"225d9e5e-598c-4b32-9c74-d7df2018500c\",\"id\":\"14351\",\"team\":\"TBB\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"13948\",\"status\":\"R\",\"stats_id\":\"32426\",\"position\":\"WR\",\"stats_global_id\":\"866042\",\"weight\":\"195\",\"id\":\"14354\",\"draft_team\":\"FA\",\"birthdate\":\"866523600\",\"name\":\"Ratliff-Williams, Anthony\",\"college\":\"North Carolina\",\"rotowire_id\":\"13433\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"d32ec430-b35a-47cf-922e-2460ae818104\",\"team\":\"FA\",\"cbs_id\":\"2179349\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"status\":\"R\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"MIN\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"status\":\"R\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"birthdate\":\"770101200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"stats_global_id\":\"746191\",\"height\":\"74\",\"rotowire_id\":\"12539\",\"jersey\":\"15\",\"weight\":\"200\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"id\":\"14365\",\"team\":\"LAC\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14584\",\"status\":\"R\",\"stats_id\":\"32383\",\"position\":\"RB\",\"stats_global_id\":\"839390\",\"weight\":\"190\",\"id\":\"14368\",\"draft_team\":\"FA\",\"birthdate\":\"840258000\",\"name\":\"Walter, Austin\",\"college\":\"Rice\",\"rotowire_id\":\"14170\",\"height\":\"68\",\"jersey\":\"33\",\"sportsdata_id\":\"e25b6e0d-efa3-4425-bab6-5f846b902195\",\"team\":\"FA\",\"cbs_id\":\"3116876\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"82\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"status\":\"R\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"CIN\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"birthdate\":\"822459600\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"stats_global_id\":\"832993\",\"height\":\"76\",\"rotowire_id\":\"13237\",\"jersey\":\"76\",\"weight\":\"295\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"id\":\"14377\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13885\",\"stats_id\":\"31753\",\"position\":\"LB\",\"stats_global_id\":\"836080\",\"weight\":\"204\",\"id\":\"14379\",\"draft_team\":\"FA\",\"birthdate\":\"836197200\",\"name\":\"Woods, Josh\",\"college\":\"Maryland\",\"rotowire_id\":\"13361\",\"height\":\"73\",\"jersey\":\"55\",\"sportsdata_id\":\"abdf27dc-a54d-427c-a745-173f1c485292\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13728\",\"birthdate\":\"808462800\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Henderson, Trayvon\",\"college\":\"Hawaii\",\"stats_global_id\":\"746240\",\"height\":\"72\",\"rotowire_id\":\"12791\",\"jersey\":\"41\",\"weight\":\"205\",\"sportsdata_id\":\"7917b396-b7e0-4722-9a5a-7c608dd0a6ff\",\"id\":\"14380\",\"team\":\"CIN\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14586\",\"status\":\"R\",\"stats_id\":\"32377\",\"position\":\"LB\",\"stats_global_id\":\"837978\",\"weight\":\"230\",\"id\":\"14381\",\"draft_team\":\"FA\",\"birthdate\":\"821163600\",\"name\":\"Harvey, Willie\",\"college\":\"Iowa State\",\"rotowire_id\":\"14168\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"c7f8e21d-25fa-4a9b-b4ca-ac65f548031c\",\"team\":\"CLE\",\"cbs_id\":\"3116849\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32220\",\"position\":\"LB\",\"stats_global_id\":\"821593\",\"weight\":\"235\",\"id\":\"14384\",\"draft_team\":\"FA\",\"birthdate\":\"839221200\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"rotowire_id\":\"13907\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13447\",\"birthdate\":\"780123600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Wynn, Jonathan\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"744669\",\"height\":\"76\",\"rotowire_id\":\"13062\",\"jersey\":\"69\",\"weight\":\"260\",\"sportsdata_id\":\"e8a774bd-079d-48ac-aaa6-01c8fcb46e4a\",\"id\":\"14385\",\"team\":\"DET\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13783\",\"birthdate\":\"809413200\",\"draft_team\":\"FA\",\"position\":\"PK\",\"name\":\"Santoso, Ryan\",\"college\":\"Minnesota\",\"stats_global_id\":\"728263\",\"height\":\"77\",\"rotowire_id\":\"13526\",\"jersey\":\"2\",\"weight\":\"258\",\"sportsdata_id\":\"d58166e2-24ee-4dd2-ae22-36b05634eb6d\",\"id\":\"14387\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14580\",\"status\":\"R\",\"stats_id\":\"32369\",\"position\":\"PK\",\"stats_global_id\":\"837903\",\"weight\":\"162\",\"id\":\"14393\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Hedlund, Cole\",\"college\":\"North Texas\",\"rotowire_id\":\"14160\",\"height\":\"69\",\"jersey\":\"9\",\"sportsdata_id\":\"5e52491c-218a-4e32-b455-0d3aa05b8151\",\"team\":\"FA\",\"cbs_id\":\"3116851\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"stats_global_id\":\"699216\",\"height\":\"70\",\"rotowire_id\":\"11374\",\"jersey\":\"42\",\"weight\":\"200\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"id\":\"14394\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"birthdate\":\"818917200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820730\",\"height\":\"73\",\"rotowire_id\":\"13342\",\"jersey\":\"38\",\"weight\":\"210\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"id\":\"14398\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"status\":\"R\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"MIA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"status\":\"R\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13511\",\"birthdate\":\"806389200\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Owens, Jonathan\",\"college\":\"Missouri Western\",\"stats_global_id\":\"1115406\",\"height\":\"71\",\"rotowire_id\":\"13218\",\"jersey\":\"42\",\"weight\":\"210\",\"sportsdata_id\":\"411c2af8-64c9-4982-8d72-3ba4c683c0db\",\"id\":\"14414\",\"team\":\"HOU\"},{\"draft_year\":\"2016\",\"birthdate\":\"723704400\",\"draft_team\":\"FA\",\"position\":\"PK\",\"name\":\"Brown, Jon\",\"college\":\"Louisville\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"11738\",\"jersey\":\"3\",\"weight\":\"202\",\"sportsdata_id\":\"1a59e864-5282-4d94-b678-8537d524e181\",\"id\":\"14419\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"status\":\"R\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"OAK\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"stats_id\":\"31648\",\"position\":\"DE\",\"stats_global_id\":\"820764\",\"weight\":\"255\",\"id\":\"14421\",\"draft_team\":\"FA\",\"birthdate\":\"811314000\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"rotowire_id\":\"13187\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14420\",\"status\":\"R\",\"stats_id\":\"32174\",\"position\":\"PK\",\"stats_global_id\":\"838418\",\"weight\":\"179\",\"id\":\"14426\",\"draft_team\":\"FA\",\"birthdate\":\"827470800\",\"name\":\"Wright, Matthew\",\"college\":\"Central Florida\",\"rotowire_id\":\"14189\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"f0c7de3c-9e8b-4c3d-b42f-985f29ce163f\",\"team\":\"FA\",\"cbs_id\":\"3116875\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13409\",\"birthdate\":\"834296400\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Wicker, JoJo\",\"college\":\"Arizona State\",\"stats_global_id\":\"865660\",\"height\":\"74\",\"rotowire_id\":\"12554\",\"jersey\":\"64\",\"weight\":\"315\",\"sportsdata_id\":\"63ed4efa-6dcd-40f5-ae8a-d6221ac0ead5\",\"id\":\"14432\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"birthdate\":\"841294800\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"stats_global_id\":\"837722\",\"height\":\"71\",\"rotowire_id\":\"12827\",\"jersey\":\"39\",\"weight\":\"200\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"id\":\"14434\",\"team\":\"WAS\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"college\":\"Louisville\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"status\":\"R\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"JAC\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14800\",\"status\":\"R\",\"stats_id\":\"32621\",\"position\":\"RB\",\"stats_global_id\":\"1171711\",\"weight\":\"220\",\"id\":\"14445\",\"draft_team\":\"FA\",\"birthdate\":\"833259600\",\"name\":\"Caldwell, Josh\",\"college\":\"Northwest Missouri State\",\"rotowire_id\":\"14326\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"64602329-20b8-4690-a924-544a22bd09ae\",\"team\":\"FA\",\"cbs_id\":\"3118490\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"status\":\"R\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"KCC\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13549\",\"birthdate\":\"823064400\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Lammons, Chris\",\"college\":\"South Carolina\",\"stats_global_id\":\"835746\",\"height\":\"70\",\"rotowire_id\":\"13017\",\"jersey\":\"30\",\"weight\":\"190\",\"sportsdata_id\":\"bb5e3914-d941-4f05-8c45-bc9c520490ef\",\"id\":\"14452\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14351\",\"status\":\"R\",\"stats_id\":\"32102\",\"position\":\"CB\",\"stats_global_id\":\"822514\",\"weight\":\"198\",\"id\":\"14456\",\"draft_team\":\"FA\",\"birthdate\":\"805438800\",\"name\":\"Watson, Brandon\",\"college\":\"Michigan\",\"rotowire_id\":\"14036\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"095f659a-2aaa-4961-912c-66f337755787\",\"team\":\"JAC\",\"cbs_id\":\"2131208\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14716\",\"status\":\"R\",\"stats_id\":\"32541\",\"position\":\"RB\",\"stats_global_id\":\"867172\",\"weight\":\"226\",\"id\":\"14458\",\"draft_team\":\"FA\",\"birthdate\":\"840171600\",\"name\":\"Cox, Jeremy\",\"college\":\"Old Dominion\",\"rotowire_id\":\"14003\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"3eb32502-2ecd-44b9-978e-33473fdd8354\",\"team\":\"FA\",\"cbs_id\":\"3117060\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32109\",\"position\":\"WR\",\"stats_global_id\":\"1165726\",\"weight\":\"170\",\"id\":\"14461\",\"draft_team\":\"FA\",\"birthdate\":\"802674000\",\"name\":\"Bane, Shawn\",\"college\":\"Northwest Missouri State\",\"rotowire_id\":\"13950\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"e6c12059-c658-45ab-9540-54957447c6e1\",\"team\":\"FA\",\"cbs_id\":\"3116897\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32115\",\"position\":\"WR\",\"stats_global_id\":\"866157\",\"weight\":\"195\",\"id\":\"14463\",\"draft_team\":\"FA\",\"birthdate\":\"873003600\",\"name\":\"Lewis, Kahlil\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14008\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"cd652b82-7ff4-4e19-84dd-c399a5de2f1d\",\"team\":\"FA\",\"cbs_id\":\"3116936\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32559\",\"position\":\"RB\",\"stats_global_id\":\"835777\",\"weight\":\"179\",\"id\":\"14465\",\"draft_team\":\"FA\",\"birthdate\":\"786690000\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"rotowire_id\":\"14237\",\"height\":\"69\",\"jersey\":\"46\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"team\":\"MIN\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32113\",\"position\":\"LB\",\"stats_global_id\":\"1070095\",\"weight\":\"235\",\"id\":\"14466\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Crawford, Tre'\",\"college\":\"Alabama-Birmingham\",\"rotowire_id\":\"13899\",\"height\":\"75\",\"jersey\":\"49\",\"sportsdata_id\":\"04a63d1d-683e-46ed-a929-458923150f5e\",\"team\":\"FA\",\"cbs_id\":\"3116935\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32412\",\"position\":\"WR\",\"stats_global_id\":\"976405\",\"weight\":\"203\",\"id\":\"14471\",\"draft_team\":\"FA\",\"birthdate\":\"853218000\",\"name\":\"Easley, Nick\",\"college\":\"Iowa\",\"rotowire_id\":\"13918\",\"height\":\"71\",\"jersey\":\"86\",\"sportsdata_id\":\"862b132b-c187-4c43-ba6d-242ae660ebda\",\"team\":\"BUF\",\"cbs_id\":\"2804380\"},{\"draft_year\":\"2015\",\"birthdate\":\"741157200\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Vaughters, James\",\"college\":\"Stanford\",\"stats_global_id\":\"598982\",\"height\":\"74\",\"rotowire_id\":\"10850\",\"jersey\":\"46\",\"weight\":\"254\",\"sportsdata_id\":\"ee209aa3-145f-4acb-85fd-e8a2420b4d2a\",\"id\":\"14478\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32466\",\"position\":\"RB\",\"stats_global_id\":\"836253\",\"weight\":\"225\",\"id\":\"14480\",\"draft_team\":\"FA\",\"birthdate\":\"827470800\",\"name\":\"Ellis, Jordan\",\"college\":\"Virginia\",\"rotowire_id\":\"13500\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"2e194e2d-74ff-4a70-9bef-724779bcea15\",\"team\":\"FA\",\"cbs_id\":\"2139040\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32556\",\"position\":\"WR\",\"stats_global_id\":\"838301\",\"weight\":\"205\",\"id\":\"14481\",\"draft_team\":\"FA\",\"birthdate\":\"840862800\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"rotowire_id\":\"14236\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"team\":\"DAL\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32283\",\"position\":\"WR\",\"stats_global_id\":\"1063397\",\"weight\":\"201\",\"id\":\"14486\",\"draft_team\":\"FA\",\"birthdate\":\"848206800\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"rotowire_id\":\"14129\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"team\":\"CLE\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32273\",\"position\":\"TE\",\"stats_global_id\":\"881697\",\"weight\":\"240\",\"id\":\"14488\",\"draft_team\":\"FA\",\"birthdate\":\"850366800\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"rotowire_id\":\"14131\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32277\",\"position\":\"PN\",\"stats_global_id\":\"891880\",\"weight\":\"207\",\"id\":\"14489\",\"draft_team\":\"FA\",\"birthdate\":\"867992400\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"rotowire_id\":\"14147\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32205\",\"position\":\"LB\",\"stats_global_id\":\"821248\",\"weight\":\"245\",\"id\":\"14495\",\"draft_team\":\"FA\",\"birthdate\":\"809586000\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"rotowire_id\":\"14068\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32400\",\"position\":\"RB\",\"stats_global_id\":\"1166782\",\"weight\":\"170\",\"id\":\"14496\",\"draft_team\":\"FA\",\"birthdate\":\"798958800\",\"name\":\"Jackson, Devontae\",\"college\":\"West Georgia\",\"rotowire_id\":\"14061\",\"height\":\"67\",\"jersey\":\"48\",\"sportsdata_id\":\"d2166e46-897f-46e6-9f86-fd98b9f3f3b8\",\"team\":\"FA\",\"cbs_id\":\"3116709\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32219\",\"position\":\"WR\",\"stats_global_id\":\"883332\",\"weight\":\"186\",\"id\":\"14498\",\"draft_team\":\"FA\",\"birthdate\":\"861944400\",\"name\":\"McKnight, Kelvin\",\"college\":\"Samford\",\"rotowire_id\":\"13893\",\"height\":\"68\",\"jersey\":\"16\",\"sportsdata_id\":\"286bd737-fd84-433f-8f6d-65869fa6c536\",\"team\":\"DEN\",\"cbs_id\":\"2186057\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32189\",\"position\":\"WR\",\"stats_global_id\":\"1165782\",\"weight\":\"180\",\"id\":\"14499\",\"draft_team\":\"FA\",\"birthdate\":\"853390800\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"rotowire_id\":\"13919\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"team\":\"DEN\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32191\",\"position\":\"TE\",\"stats_global_id\":\"823871\",\"weight\":\"244\",\"id\":\"14501\",\"draft_team\":\"FA\",\"birthdate\":\"800427600\",\"name\":\"Fort, Austin\",\"college\":\"Wyoming\",\"rotowire_id\":\"14062\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"92c3ccc0-b808-4852-a65d-c2c7e9118cef\",\"team\":\"DEN\",\"cbs_id\":\"2131959\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32561\",\"position\":\"WR\",\"stats_global_id\":\"837087\",\"weight\":\"194\",\"id\":\"14503\",\"draft_team\":\"FA\",\"birthdate\":\"838616400\",\"name\":\"Kennedy, Tom\",\"college\":\"Bryant\",\"rotowire_id\":\"14246\",\"height\":\"70\",\"jersey\":\"85\",\"sportsdata_id\":\"dc51b38c-dc82-44ee-a88b-764d681ce58a\",\"team\":\"DET\",\"cbs_id\":\"3117113\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32457\",\"position\":\"LB\",\"stats_global_id\":\"1166932\",\"weight\":\"240\",\"id\":\"14506\",\"draft_team\":\"FA\",\"birthdate\":\"848811600\",\"name\":\"Pittman, Anthony\",\"college\":\"Wayne State, Mich.\",\"rotowire_id\":\"14211\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"23df1eb7-f589-4e49-bb31-0b4ce983fe32\",\"team\":\"DET\",\"cbs_id\":\"3117026\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32266\",\"position\":\"LB\",\"stats_global_id\":\"820700\",\"weight\":\"228\",\"id\":\"14509\",\"draft_team\":\"FA\",\"birthdate\":\"819262800\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14103\",\"height\":\"72\",\"jersey\":\"40\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"team\":\"GBP\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32152\",\"position\":\"QB\",\"stats_global_id\":\"945086\",\"weight\":\"221\",\"id\":\"14510\",\"draft_team\":\"FA\",\"birthdate\":\"813992400\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"rotowire_id\":\"14040\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"team\":\"ARI\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32162\",\"position\":\"RB\",\"stats_global_id\":\"835062\",\"weight\":\"226\",\"id\":\"14512\",\"draft_team\":\"FA\",\"birthdate\":\"788245200\",\"name\":\"Turner, Xavier\",\"college\":\"Tarleton State\",\"rotowire_id\":\"14042\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"91671654-f27f-498a-b3ed-7bf006ee3f2b\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"birthdate\":\"767682000\",\"draft_team\":\"FA\",\"stats_id\":\"31670\",\"position\":\"PN\",\"name\":\"Winslow, Ryan\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"742412\",\"height\":\"77\",\"rotowire_id\":\"12941\",\"jersey\":\"2\",\"weight\":\"217\",\"sportsdata_id\":\"80ebeab8-891e-4a54-80ec-3f102fed7cc7\",\"id\":\"14513\",\"team\":\"ARI\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32623\",\"position\":\"CB\",\"stats_global_id\":\"910649\",\"weight\":\"195\",\"id\":\"14518\",\"draft_team\":\"FA\",\"birthdate\":\"900738000\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"rotowire_id\":\"14330\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32151\",\"position\":\"LB\",\"stats_global_id\":\"923359\",\"weight\":\"235\",\"id\":\"14519\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"rotowire_id\":\"14257\",\"height\":\"75\",\"jersey\":\"43\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"team\":\"CAR\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32306\",\"position\":\"TE\",\"stats_global_id\":\"1139280\",\"weight\":\"246\",\"id\":\"14525\",\"draft_team\":\"FA\",\"birthdate\":\"797662800\",\"name\":\"Orzech, Matt\",\"college\":\"Azusa Pacific\",\"rotowire_id\":\"14127\",\"height\":\"75\",\"jersey\":\"67\",\"sportsdata_id\":\"56b26b71-8f1e-416c-a7e5-62cd67c98f4b\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32509\",\"position\":\"DE\",\"stats_global_id\":\"867748\",\"weight\":\"305\",\"id\":\"14531\",\"draft_team\":\"FA\",\"birthdate\":\"867387600\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"rotowire_id\":\"13864\",\"height\":\"75\",\"jersey\":\"67\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"team\":\"PHI\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32357\",\"position\":\"CB\",\"stats_global_id\":\"867758\",\"weight\":\"192\",\"id\":\"14532\",\"draft_team\":\"FA\",\"birthdate\":\"844923600\",\"name\":\"Fields, Mark\",\"college\":\"Clemson\",\"rotowire_id\":\"13646\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"f60017c5-e44c-4256-831f-86c8d8626481\",\"team\":\"MIN\",\"cbs_id\":\"2179217\"},{\"draft_year\":\"2018\",\"birthdate\":\"773730000\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Herron, Frank\",\"college\":\"Louisiana State\",\"stats_global_id\":\"727750\",\"height\":\"76\",\"rotowire_id\":\"13188\",\"jersey\":\"93\",\"weight\":\"305\",\"sportsdata_id\":\"ef0a8abc-074e-4ed1-a053-846c3b1d9cc5\",\"id\":\"14536\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"birthdate\":\"811054800\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Davis, Rashard\",\"college\":\"James Madison\",\"stats_global_id\":\"750368\",\"height\":\"69\",\"rotowire_id\":\"12367\",\"jersey\":\"89\",\"weight\":\"175\",\"sportsdata_id\":\"4e87e1a1-8b89-4738-a527-87eb0663c35d\",\"id\":\"14538\",\"team\":\"TEN\"},{\"draft_year\":\"2018\",\"birthdate\":\"827643600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"McCray, Robert\",\"college\":\"Indiana\",\"stats_global_id\":\"838208\",\"height\":\"74\",\"rotowire_id\":\"13420\",\"jersey\":\"52\",\"weight\":\"280\",\"sportsdata_id\":\"cdcd43ee-b31d-42d3-adcf-8afb4458976e\",\"id\":\"14540\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32624\",\"position\":\"WR\",\"stats_global_id\":\"910805\",\"weight\":\"195\",\"id\":\"14544\",\"draft_team\":\"FA\",\"birthdate\":\"882421200\",\"name\":\"Simms, Marcus\",\"college\":\"West Virginia\",\"rotowire_id\":\"14329\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"b615da69-4275-4aa7-ae6b-8a9f528254fb\",\"team\":\"FA\",\"cbs_id\":\"3125670\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32547\",\"position\":\"WR\",\"stats_global_id\":\"1166990\",\"weight\":\"213\",\"id\":\"14545\",\"draft_team\":\"FA\",\"birthdate\":\"803883600\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"rotowire_id\":\"13999\",\"height\":\"74\",\"jersey\":\"89\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32137\",\"position\":\"WR\",\"stats_global_id\":\"828656\",\"weight\":\"180\",\"id\":\"14549\",\"draft_team\":\"FA\",\"birthdate\":\"822718800\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"14012\",\"height\":\"70\",\"jersey\":\"14\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32140\",\"position\":\"RB\",\"stats_global_id\":\"835845\",\"weight\":\"233\",\"id\":\"14552\",\"draft_team\":\"FA\",\"birthdate\":\"836197200\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13998\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32141\",\"position\":\"WR\",\"stats_global_id\":\"891229\",\"weight\":\"195\",\"id\":\"14553\",\"draft_team\":\"FA\",\"birthdate\":\"846046800\",\"name\":\"Davis, Davion\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"14048\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"95f9c4fe-b5b0-4075-bdd8-f5b458373df6\",\"team\":\"MIN\",\"cbs_id\":\"3116814\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32143\",\"position\":\"WR\",\"stats_global_id\":\"1050926\",\"weight\":\"166\",\"id\":\"14554\",\"draft_team\":\"FA\",\"birthdate\":\"848811600\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"14049\",\"height\":\"73\",\"jersey\":\"85\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"team\":\"MIN\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32612\",\"position\":\"WR\",\"stats_global_id\":\"1168410\",\"weight\":\"190\",\"id\":\"14555\",\"draft_team\":\"FA\",\"birthdate\":\"848984400\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"rotowire_id\":\"14318\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32398\",\"position\":\"WR\",\"stats_global_id\":\"1166545\",\"weight\":\"170\",\"id\":\"14558\",\"draft_team\":\"FA\",\"birthdate\":\"881211600\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"rotowire_id\":\"14191\",\"height\":\"66\",\"jersey\":\"11\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32492\",\"position\":\"LB\",\"stats_global_id\":\"880029\",\"weight\":\"260\",\"id\":\"14559\",\"draft_team\":\"FA\",\"birthdate\":\"855378000\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"rotowire_id\":\"13859\",\"height\":\"77\",\"jersey\":\"58\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32243\",\"position\":\"WR\",\"stats_global_id\":\"838670\",\"weight\":\"191\",\"id\":\"14560\",\"draft_team\":\"FA\",\"birthdate\":\"814770000\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"13815\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"team\":\"CHI\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32533\",\"position\":\"WR\",\"stats_global_id\":\"883429\",\"weight\":\"195\",\"id\":\"14561\",\"draft_team\":\"FA\",\"birthdate\":\"861598800\",\"name\":\"Smith, Jeff\",\"college\":\"Boston College\",\"rotowire_id\":\"13934\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"767b1112-c77a-4a58-89b4-30f1ffa2a497\",\"team\":\"NYJ\",\"cbs_id\":\"2185927\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"82\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32548\",\"position\":\"PN\",\"stats_global_id\":\"839067\",\"weight\":\"219\",\"id\":\"14568\",\"draft_team\":\"FA\",\"birthdate\":\"805698000\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14265\",\"height\":\"75\",\"jersey\":\"6\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"team\":\"FA\"},{\"draft_year\":\"2017\",\"birthdate\":\"807685200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Williams, Daniel\",\"college\":\"Jackson State\",\"stats_global_id\":\"753865\",\"height\":\"75\",\"rotowire_id\":\"12374\",\"jersey\":\"6\",\"weight\":\"200\",\"sportsdata_id\":\"2e67a3f9-b3e8-409b-a61f-adc76fb83115\",\"id\":\"14576\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32589\",\"position\":\"CB\",\"stats_global_id\":\"865648\",\"weight\":\"195\",\"id\":\"14579\",\"draft_team\":\"FA\",\"birthdate\":\"852181200\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"rotowire_id\":\"14297\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32222\",\"position\":\"LB\",\"stats_global_id\":\"828111\",\"weight\":\"240\",\"id\":\"14584\",\"draft_team\":\"FA\",\"birthdate\":\"832568400\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"rotowire_id\":\"14081\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32560\",\"position\":\"WR\",\"stats_global_id\":\"746533\",\"weight\":\"180\",\"id\":\"14589\",\"draft_team\":\"FA\",\"birthdate\":\"786776400\",\"name\":\"Schnell, Spencer\",\"college\":\"Illinois State\",\"rotowire_id\":\"14243\",\"height\":\"69\",\"jersey\":\"83\",\"sportsdata_id\":\"35b28aeb-b711-4e73-8c85-d3b9dd8cb672\",\"team\":\"TBB\",\"cbs_id\":\"3117140\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32318\",\"position\":\"LB\",\"stats_global_id\":\"866464\",\"weight\":\"228\",\"id\":\"14590\",\"draft_team\":\"FA\",\"birthdate\":\"870670800\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13829\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32364\",\"position\":\"TE\",\"stats_global_id\":\"832213\",\"weight\":\"225\",\"id\":\"14591\",\"draft_team\":\"FA\",\"birthdate\":\"830408400\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"rotowire_id\":\"14184\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"team\":\"KCC\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32123\",\"position\":\"WR\",\"stats_global_id\":\"883976\",\"weight\":\"190\",\"id\":\"14592\",\"draft_team\":\"FA\",\"birthdate\":\"869634000\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"rotowire_id\":\"13833\",\"height\":\"68\",\"jersey\":\"17\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32461\",\"position\":\"DT\",\"stats_global_id\":\"835485\",\"weight\":\"285\",\"id\":\"14595\",\"draft_team\":\"FA\",\"birthdate\":\"839221200\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"14213\",\"height\":\"76\",\"jersey\":\"62\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"team\":\"DET\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32384\",\"position\":\"PK\",\"stats_global_id\":\"836963\",\"weight\":\"213\",\"id\":\"14600\",\"draft_team\":\"FA\",\"birthdate\":\"829112400\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14172\",\"height\":\"71\",\"jersey\":\"4\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32204\",\"position\":\"LB\",\"stats_global_id\":\"835429\",\"weight\":\"235\",\"id\":\"14602\",\"draft_team\":\"FA\",\"birthdate\":\"813301200\",\"name\":\"Phillips, Justin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13903\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"5ce0fd7f-bb8f-4d0b-a995-1473e148d45b\",\"team\":\"FA\",\"cbs_id\":\"2139260\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32609\",\"position\":\"CB\",\"stats_global_id\":\"841562\",\"weight\":\"170\",\"id\":\"14603\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Brown, Alex\",\"college\":\"South Carolina State\",\"rotowire_id\":\"14316\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"3565220d-9fa0-497d-9fa1-e3bea7c302e8\",\"team\":\"KCC\",\"cbs_id\":\"3117166\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32578\",\"position\":\"DT\",\"stats_global_id\":\"1167302\",\"weight\":\"280\",\"id\":\"14610\",\"draft_team\":\"FA\",\"birthdate\":\"840171600\",\"name\":\"Sizer, Deyon\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"14287\",\"height\":\"76\",\"jersey\":\"78\",\"sportsdata_id\":\"a1329bf2-4f70-48db-9785-3cd29fc7b56f\",\"team\":\"DEN\",\"cbs_id\":\"3117112\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32439\",\"position\":\"RB\",\"stats_global_id\":\"835694\",\"weight\":\"205\",\"id\":\"14612\",\"draft_team\":\"FA\",\"birthdate\":\"808635600\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"rotowire_id\":\"13913\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32187\",\"position\":\"WR\",\"stats_global_id\":\"877596\",\"weight\":\"190\",\"id\":\"14613\",\"draft_team\":\"FA\",\"birthdate\":\"859784400\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"rotowire_id\":\"14055\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32581\",\"position\":\"QB\",\"stats_global_id\":\"837040\",\"weight\":\"210\",\"id\":\"14618\",\"draft_team\":\"FA\",\"birthdate\":\"829285200\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"rotowire_id\":\"13566\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"team\":\"PIT\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"855550800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32139\",\"position\":\"S\",\"name\":\"Abernathy, Micah\",\"college\":\"Tennessee\",\"stats_global_id\":\"877193\",\"height\":\"72\",\"rotowire_id\":\"14154\",\"weight\":\"195\",\"sportsdata_id\":\"5e32839d-6ea9-4f92-8209-520a980ffcde\",\"id\":\"14624\",\"team\":\"FA\",\"cbs_id\":\"2180502\"},{\"draft_year\":\"2016\",\"birthdate\":\"748155600\",\"draft_team\":\"FA\",\"stats_id\":\"29813\",\"position\":\"DT\",\"name\":\"Bryant, Brandin\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"695076\",\"height\":\"75\",\"rotowire_id\":\"11557\",\"jersey\":\"69\",\"weight\":\"294\",\"sportsdata_id\":\"8b1be2ac-e483-4f39-9bf9-a81be33ac92e\",\"id\":\"14627\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32386\",\"position\":\"PN\",\"stats_global_id\":\"866061\",\"weight\":\"220\",\"id\":\"14630\",\"draft_team\":\"FA\",\"birthdate\":\"817448400\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14171\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"team\":\"OAK\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"140760\",\"position\":\"DE\",\"stats_global_id\":\"829992\",\"weight\":\"270\",\"id\":\"14649\",\"draft_team\":\"FA\",\"birthdate\":\"802155600\",\"name\":\"Hendrix, Dewayne\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14076\",\"height\":\"76\",\"jersey\":\"73\",\"sportsdata_id\":\"55c1614f-c234-45d9-baf5-1cc808faaa4d\",\"team\":\"FA\",\"cbs_id\":\"2133524\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"31808\",\"position\":\"PK\",\"stats_global_id\":\"837827\",\"weight\":\"205\",\"id\":\"14650\",\"draft_team\":\"FA\",\"birthdate\":\"838789200\",\"name\":\"Vizcaino, Tristan\",\"college\":\"Washington\",\"rotowire_id\":\"13496\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"cefd0600-93f2-4e0f-9624-81e3dc495c1d\",\"team\":\"DAL\",\"cbs_id\":\"3103638\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32181\",\"position\":\"LB\",\"stats_global_id\":\"1069758\",\"weight\":\"220\",\"id\":\"14651\",\"draft_team\":\"FA\",\"birthdate\":\"798440400\",\"name\":\"Blunt, B.J.\",\"college\":\"McNeese State\",\"rotowire_id\":\"13731\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"889052f9-12d3-4540-af7f-2728c1ad91de\",\"team\":\"FA\",\"cbs_id\":\"3116700\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32321\",\"position\":\"DT\",\"stats_global_id\":\"883319\",\"weight\":\"285\",\"id\":\"14652\",\"draft_team\":\"FA\",\"birthdate\":\"857192400\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"rotowire_id\":\"13519\",\"height\":\"73\",\"jersey\":\"60\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32425\",\"position\":\"DT\",\"stats_global_id\":\"834396\",\"weight\":\"299\",\"id\":\"14653\",\"draft_team\":\"FA\",\"birthdate\":\"827211600\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"rotowire_id\":\"14204\",\"height\":\"73\",\"jersey\":\"79\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"team\":\"TEN\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32295\",\"position\":\"TE\",\"stats_global_id\":\"884045\",\"weight\":\"245\",\"id\":\"14654\",\"draft_team\":\"FA\",\"birthdate\":\"840430800\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"rotowire_id\":\"14094\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"team\":\"WAS\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32241\",\"position\":\"LB\",\"stats_global_id\":\"881829\",\"weight\":\"235\",\"id\":\"14660\",\"draft_team\":\"FA\",\"birthdate\":\"862808400\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"13487\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"team\":\"NYG\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2019\",\"birthdate\":\"862376400\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Dillon, Brandon\",\"college\":\"Marian, Ind.\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14001\",\"jersey\":\"86\",\"weight\":\"250\",\"sportsdata_id\":\"c1576aca-1bd1-4b9f-ba83-10235f1e2eca\",\"id\":\"14665\",\"team\":\"MIN\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"38\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"OAK\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2018\",\"birthdate\":\"758437200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Ekuale, Daniel\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13142\",\"jersey\":\"96\",\"weight\":\"300\",\"sportsdata_id\":\"55998ec0-4d69-4d14-a2f4-cf72de36e998\",\"id\":\"14670\",\"team\":\"CLE\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"27\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"95\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"LAR\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Wiltz, Jomal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"74\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32155\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"14677\",\"draft_team\":\"FA\",\"birthdate\":\"873349200\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"rotowire_id\":\"14044\",\"height\":\"74\",\"jersey\":\"72\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"team\":\"ARI\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"823755600\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Peace, Chris\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13643\",\"jersey\":\"40\",\"weight\":\"250\",\"sportsdata_id\":\"a3dca1fa-69cf-4468-b95b-63c8d532dc5f\",\"id\":\"14679\",\"team\":\"NYG\",\"cbs_id\":\"3117064\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"79\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32304\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14682\",\"draft_team\":\"FA\",\"birthdate\":\"832395600\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13539\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"ARI\"},{\"draft_year\":\"2019\",\"birthdate\":\"855810000\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"CB\",\"name\":\"Meadors, Nate\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14155\",\"jersey\":\"44\",\"weight\":\"194\",\"sportsdata_id\":\"78ca0233-a32a-4435-ba06-6ececaa3c537\",\"id\":\"14696\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32552\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14702\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"rotowire_id\":\"14267\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"team\":\"LAC\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2018\",\"birthdate\":\"755326800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Jackson, Robert\",\"college\":\"Nevada-Las Vegas\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13411\",\"jersey\":\"34\",\"weight\":\"205\",\"sportsdata_id\":\"d962a98d-cbba-47e0-ad20-dedc094a1822\",\"id\":\"14713\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"71\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32417\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14717\",\"draft_team\":\"FA\",\"birthdate\":\"829026000\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"rotowire_id\":\"14254\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"team\":\"IND\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"47\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"DEN\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"PHI\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2019\",\"birthdate\":\"871966800\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"CB\",\"name\":\"Hayes, Tae\",\"college\":\"Appalachian State\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14031\",\"jersey\":\"30\",\"weight\":\"188\",\"sportsdata_id\":\"588d8e04-98dc-478a-b3ba-9e3cb58d9afc\",\"id\":\"14741\",\"team\":\"MIA\",\"cbs_id\":\"3117040\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"813474000\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"CB\",\"name\":\"Wilkins, Mazzi\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13730\",\"jersey\":\"37\",\"weight\":\"191\",\"sportsdata_id\":\"cd6cfc03-9ffc-4a2d-8dd3-7dac5915e637\",\"id\":\"14748\",\"team\":\"TBB\",\"cbs_id\":\"3127657\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Jones, Charles\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14248\",\"jersey\":\"85\",\"weight\":\"255\",\"sportsdata_id\":\"7b2e40ac-417d-4a86-b239-66bbe91c0bfc\",\"id\":\"14751\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"808376400\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"S\",\"name\":\"Hassell, J.T.\",\"college\":\"Florida Tech\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14133\",\"jersey\":\"49\",\"weight\":\"199\",\"sportsdata_id\":\"fe30ca46-c995-46ce-bca3-12451bfb5ad8\",\"id\":\"14753\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Gooden, Ahmad\",\"college\":\"Samford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14063\",\"jersey\":\"94\",\"weight\":\"245\",\"sportsdata_id\":\"a1d54aed-e9e7-4a77-95c5-5d62be8fe75c\",\"id\":\"14755\",\"team\":\"NYJ\"},{\"draft_year\":\"2018\",\"birthdate\":\"797144400\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Larkin, Austin\",\"college\":\"Purdue\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13251\",\"jersey\":\"62\",\"weight\":\"265\",\"sportsdata_id\":\"9fe70732-0c55-42ff-a79c-9d234fbc995c\",\"id\":\"14756\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32522\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14758\",\"draft_team\":\"FA\",\"birthdate\":\"833086800\",\"name\":\"Brown, Kyron\",\"college\":\"Akron\",\"rotowire_id\":\"14223\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"cf93a57e-129e-4e81-8d40-d8772ee0403c\",\"team\":\"NYJ\"},{\"draft_year\":\"2019\",\"status\":\"R\",\"stats_id\":\"32435\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14759\",\"draft_team\":\"FA\",\"birthdate\":\"866437200\",\"name\":\"Hartage, Montre\",\"college\":\"Northwestern\",\"rotowire_id\":\"13770\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"66e7cb60-bf2e-41a5-96c1-4f7d4f8f9cda\",\"team\":\"MIA\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"OAK\"},{\"draft_year\":\"2019\",\"birthdate\":\"841899600\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"CB\",\"name\":\"Brooks, Nate\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13969\",\"jersey\":\"41\",\"weight\":\"192\",\"sportsdata_id\":\"ea8d0a80-2de3-4715-bcce-710f625ccb6a\",\"id\":\"14761\",\"team\":\"MIA\"},{\"draft_year\":\"2018\",\"birthdate\":\"795762000\",\"draft_team\":\"FA\",\"stats_id\":\"31415\",\"position\":\"CB\",\"name\":\"Stephens, Linden\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"12699\",\"jersey\":\"32\",\"weight\":\"193\",\"sportsdata_id\":\"1163ba47-560b-4705-82be-69967c4fc096\",\"id\":\"14762\",\"team\":\"MIA\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"}]},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849644, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.135537, namelookup = 0.000111, 
+    connect = 0.000115, pretransfer = 0.00027, starttransfer = 1.908168, 
+    total = 2.072094)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-265296.R b/tests/testthat/api.myfantasyleague.com/2020/export-265296.R
index fd0fc388..23aabd93 100644
--- a/tests/testthat/api.myfantasyleague.com/2020/export-265296.R
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-265296.R
@@ -1,15 +1,15 @@
 structure(list(url = "https://www57.myfantasyleague.com/2020/export?TYPE=transactions&L=37920&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 01:31:05 GMT", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:34:10 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
         `content-length` = "27997", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
     "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Mon, 27 Jul 2020 01:31:05 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:09 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             location = "https://www57.myfantasyleague.com/2020/export?TYPE=transactions&L=37920&JSON=1", 
             `content-length` = "0", targethost = "www70"), class = c("insensitive", 
         "list"))), list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Mon, 27 Jul 2020 01:31:05 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:10 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
             `content-length` = "27997", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
@@ -18,7 +18,7 @@ structure(list(url = "https://www57.myfantasyleague.com/2020/export?TYPE=transac
         expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
     content = charToRaw("{\"version\":\"1.0\",\"transactions\":{\"transaction\":[{\"timestamp\":\"1593648000\",\"franchise\":\"0005\",\"transaction\":\"13916,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1593648000\",\"franchise\":\"0005\",\"transaction\":\"14816,|1.00|\",\"type\":\"BBID_WAIVER\"},{\"timestamp\":\"1593648000\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"BBID_AUTO_PROCESS_WAIVERS\"},{\"timestamp\":\"1593470321\",\"demoted\":\"13115,12637,14097,13615,13623,12665,8673,13919,14464,14984,\",\"franchise\":\"0005\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593393406\",\"demoted\":\"14778,14612,11239,14124,11951,13642,12645,13644,13382,13819,\",\"franchise\":\"0016\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593258434\",\"demoted\":\"14782,13617,14075,14125,14841,14121,14305,14613,14939,14873,\",\"franchise\":\"0011\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593228510\",\"demoted\":\"11760,14815,14973,13613,13418,14972,14847,12656,14869,14142,\",\"franchise\":\"0001\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593212771\",\"demoted\":\"13968,11182,10389,10708,14072,14284,12181,13649,13753,14146,\",\"franchise\":\"0003\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593203657\",\"demoted\":\"10297,11660,12912,12505,14116,14127,14857,11890,13988,6997,\",\"franchise\":\"0004\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593198345\",\"demoted\":\"14813,\",\"franchise\":\"0009\",\"promoted\":\"14867,\",\"type\":\"TAXI\"},{\"timestamp\":\"1593198314\",\"demoted\":\"10948,13595,10413,13621,14114,13488,14862,14875,14867,14209,\",\"franchise\":\"0009\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593197842\",\"demoted\":\"12616,13591,15021,14806,14076,14850,14969,14858,14848,13637,\",\"franchise\":\"0015\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593196028\",\"demoted\":\"14781,10696,13416,14821,14280,14866,14992,14868,14341,11647,\",\"franchise\":\"0013\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593194169\",\"demoted\":\"13678,\",\"franchise\":\"0006\",\"promoted\":\"11783,\",\"type\":\"TAXI\"},{\"timestamp\":\"1593194168\",\"demoted\":\"14062,13424,9448,12857,12153,10960,14864,13176,14974,14874,\",\"franchise\":\"0012\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593194116\",\"demoted\":\"14863,\",\"franchise\":\"0006\",\"promoted\":\"9902,\",\"type\":\"TAXI\"},{\"timestamp\":\"1593194082\",\"demoted\":\"10313,14780,12386,13290,11783,14845,14837,9902,14239,14870,\",\"franchise\":\"0006\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1593137374\",\"franchise\":\"0005\",\"transaction\":\"13919|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1593103505\",\"franchise\":\"0013\",\"transaction\":\"13135|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1593091581\",\"franchise\":\"0005\",\"transaction\":\"13919|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1593085533\",\"franchise\":\"0013\",\"transaction\":\"14280|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1593057675\",\"franchise\":\"0013\",\"transaction\":\"13135|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1593053616\",\"franchise\":\"0005\",\"transaction\":\"8673|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1593021839\",\"franchise\":\"0013\",\"transaction\":\"14280|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1593021744\",\"franchise\":\"0013\",\"transaction\":\"14866|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1593004657\",\"franchise\":\"0005\",\"transaction\":\"8673|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592998514\",\"franchise\":\"0012\",\"transaction\":\"9448|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592998514\",\"franchise\":\"0013\",\"transaction\":\"10696|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592971204\",\"franchise\":\"0013\",\"transaction\":\"14866|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592964666\",\"franchise\":\"0005\",\"transaction\":\"12685|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592960230\",\"franchise\":\"0016\",\"transaction\":\"11951|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592937159\",\"franchise\":\"0012\",\"transaction\":\"9448|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592934410\",\"franchise\":\"0013\",\"transaction\":\"10696|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592934108\",\"franchise\":\"0013\",\"transaction\":\"14096|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592934108\",\"franchise\":\"0012\",\"transaction\":\"12443|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592921335\",\"franchise\":\"0005\",\"transaction\":\"12685|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592916786\",\"franchise\":\"0016\",\"transaction\":\"11951|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592916786\",\"franchise\":\"0002\",\"transaction\":\"11688|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592897735\",\"franchise\":\"0012\",\"transaction\":\"14062|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592897735\",\"franchise\":\"0016\",\"transaction\":\"13819|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592897735\",\"franchise\":\"0013\",\"transaction\":\"12261|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592885051\",\"franchise\":\"0013\",\"transaction\":\"14096|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592884937\",\"franchise\":\"0012\",\"transaction\":\"12443|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592880781\",\"franchise\":\"0005\",\"transaction\":\"12637|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592872606\",\"franchise\":\"0002\",\"transaction\":\"11688|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592872529\",\"franchise\":\"0002\",\"transaction\":\"13619|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592848041\",\"franchise\":\"0016\",\"transaction\":\"13819|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592847758\",\"franchise\":\"0012\",\"transaction\":\"14062|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592845273\",\"franchise\":\"0013\",\"transaction\":\"12261|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592845215\",\"franchise\":\"0013\",\"transaction\":\"14821|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592845215\",\"franchise\":\"0012\",\"transaction\":\"12153|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592845215\",\"franchise\":\"0016\",\"transaction\":\"11239|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592837377\",\"franchise\":\"0005\",\"transaction\":\"12637|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592825244\",\"franchise\":\"0002\",\"transaction\":\"13619|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592824027\",\"franchise\":\"0002\",\"transaction\":\"14787|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592824027\",\"franchise\":\"0013\",\"transaction\":\"14781|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592824027\",\"franchise\":\"0012\",\"transaction\":\"12857|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592798633\",\"franchise\":\"0013\",\"transaction\":\"14821|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592798606\",\"franchise\":\"0016\",\"transaction\":\"11239|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592798487\",\"franchise\":\"0012\",\"transaction\":\"12153|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592798478\",\"franchise\":\"0003\",\"transaction\":\"10708|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592795977\",\"franchise\":\"0005\",\"transaction\":\"12665|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592793399\",\"franchise\":\"0009\",\"transaction\":\"13595|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592769277\",\"franchise\":\"0002\",\"transaction\":\"14787|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592764944\",\"franchise\":\"0013\",\"transaction\":\"14781|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592764233\",\"franchise\":\"0012\",\"transaction\":\"12857|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592758024\",\"franchise\":\"0013\",\"transaction\":\"11647|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592757127\",\"franchise\":\"0002\",\"transaction\":\"10695|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592755285\",\"franchise\":\"0012\",\"transaction\":\"14974|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592755216\",\"franchise\":\"0003\",\"transaction\":\"12181|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592755201\",\"franchise\":\"0003\",\"transaction\":\"10708|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592752676\",\"franchise\":\"0005\",\"transaction\":\"12665|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592752062\",\"franchise\":\"0016\",\"transaction\":\"13644|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592750157\",\"franchise\":\"0009\",\"transaction\":\"13595|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592720681\",\"franchise\":\"0012\",\"transaction\":\"14874|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592720681\",\"franchise\":\"0014\",\"transaction\":\"13136|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592714619\",\"franchise\":\"0013\",\"transaction\":\"11647|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592713905\",\"franchise\":\"0002\",\"transaction\":\"10695|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592712079\",\"franchise\":\"0012\",\"transaction\":\"14974|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592712014\",\"franchise\":\"0003\",\"transaction\":\"12181|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592708442\",\"franchise\":\"0016\",\"transaction\":\"13644|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592708195\",\"franchise\":\"0002\",\"transaction\":\"9714|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592701816\",\"franchise\":\"0009\",\"transaction\":\"14862|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592699792\",\"franchise\":\"0015\",\"transaction\":\"14848|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592677315\",\"franchise\":\"0012\",\"transaction\":\"14874|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592677027\",\"franchise\":\"0009\",\"transaction\":\"14862|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592675667\",\"franchise\":\"0014\",\"transaction\":\"13136|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592671036\",\"franchise\":\"0012\",\"transaction\":\"13776|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592669394\",\"franchise\":\"0003\",\"transaction\":\"14284|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592664256\",\"franchise\":\"0002\",\"transaction\":\"9714|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592664233\",\"franchise\":\"0016\",\"transaction\":\"14612|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592658521\",\"franchise\":\"0009\",\"transaction\":\"14862|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592656713\",\"franchise\":\"0005\",\"transaction\":\"14874|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592655734\",\"franchise\":\"0015\",\"transaction\":\"14848|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592655180\",\"franchise\":\"0005\",\"transaction\":\"11850|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592626837\",\"franchise\":\"0012\",\"transaction\":\"13776|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592626135\",\"franchise\":\"0013\",\"transaction\":\"14848|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592625641\",\"franchise\":\"0003\",\"transaction\":\"14284|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592620031\",\"franchise\":\"0016\",\"transaction\":\"14612|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592619984\",\"franchise\":\"0002\",\"transaction\":\"14871|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592619267\",\"franchise\":\"0009\",\"transaction\":\"14081|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592611789\",\"franchise\":\"0015\",\"transaction\":\"13591|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592607966\",\"franchise\":\"0013\",\"transaction\":\"14992|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592607966\",\"franchise\":\"0014\",\"transaction\":\"14849|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592604207\",\"franchise\":\"0005\",\"transaction\":\"11850|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592591902\",\"franchise\":\"0009\",\"transaction\":\"14081|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592588242\",\"franchise\":\"0012\",\"transaction\":\"12785|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592585019\",\"franchise\":\"0003\",\"transaction\":\"13968|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592581592\",\"franchise\":\"0016\",\"transaction\":\"14124|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592576444\",\"franchise\":\"0002\",\"transaction\":\"14871|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592574124\",\"franchise\":\"0009\",\"transaction\":\"14081|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592573991\",\"franchise\":\"0015\",\"transaction\":\"13591|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592567863\",\"franchise\":\"0015\",\"transaction\":\"13591|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592564594\",\"franchise\":\"0014\",\"transaction\":\"14849|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592563987\",\"franchise\":\"0013\",\"transaction\":\"14992|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592543946\",\"franchise\":\"0012\",\"transaction\":\"12785|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592539226\",\"franchise\":\"0003\",\"transaction\":\"13968|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592535655\",\"franchise\":\"0016\",\"transaction\":\"14124|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592534653\",\"franchise\":\"0012\",\"transaction\":\"14124|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592532753\",\"franchise\":\"0003\",\"transaction\":\"14072|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592528695\",\"franchise\":\"\",\"transaction\":\"\",\"type\":\"UNLOCK_ALL_PLAYERS\"},{\"timestamp\":\"1592528091\",\"franchise\":\"0016\",\"transaction\":\"14124|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592528091\",\"franchise\":\"0005\",\"transaction\":\"14097|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592527905\",\"franchise\":\"0015\",\"transaction\":\"14969|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592527905\",\"franchise\":\"0009\",\"transaction\":\"14875|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592523684\",\"franchise\":\"0003\",\"transaction\":\"13753|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592522318\",\"franchise\":\"0011\",\"transaction\":\"11186|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592505449\",\"franchise\":\"0002\",\"transaction\":\"14811|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592505449\",\"franchise\":\"0002\",\"transaction\":\"13879|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592504721\",\"franchise\":\"0005\",\"transaction\":\"14097|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592504715\",\"franchise\":\"0009\",\"transaction\":\"14875|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592504708\",\"franchise\":\"0015\",\"transaction\":\"14969|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592503937\",\"franchise\":\"0009\",\"transaction\":\"13488|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592497320\",\"franchise\":\"0015\",\"transaction\":\"15021|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592489496\",\"franchise\":\"0003\",\"transaction\":\"14072|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592489300\",\"franchise\":\"0003\",\"transaction\":\"11182|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592484834\",\"franchise\":\"0005\",\"transaction\":\"14097|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592482857\",\"franchise\":\"0009\",\"transaction\":\"14875|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592482743\",\"franchise\":\"0011\",\"transaction\":\"11186|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592482726\",\"franchise\":\"0003\",\"transaction\":\"11182|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592482703\",\"franchise\":\"0015\",\"transaction\":\"14969|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592482619\",\"franchise\":\"0011\",\"transaction\":\"11186|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592482605\",\"franchise\":\"0011\",\"transaction\":\"11186|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592482576\",\"franchise\":\"0011\",\"transaction\":\"11186|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592480392\",\"franchise\":\"0003\",\"transaction\":\"13753|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592478502\",\"franchise\":\"0011\",\"transaction\":\"11186|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592478261\",\"franchise\":\"0011\",\"transaction\":\"9308|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592478261\",\"franchise\":\"0011\",\"transaction\":\"14075|10|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592461940\",\"franchise\":\"0002\",\"transaction\":\"14811|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592461888\",\"franchise\":\"0002\",\"transaction\":\"13879|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592461864\",\"franchise\":\"0014\",\"transaction\":\"13662|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592458655\",\"franchise\":\"0009\",\"transaction\":\"13488|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592455242\",\"franchise\":\"0013\",\"transaction\":\"13879|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592454051\",\"franchise\":\"0012\",\"transaction\":\"13488|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592453398\",\"franchise\":\"0012\",\"transaction\":\"14072|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592453206\",\"franchise\":\"0014\",\"transaction\":\"13488|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592449319\",\"franchise\":\"0015\",\"transaction\":\"15021|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592445631\",\"franchise\":\"0009\",\"transaction\":\"10948|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592445060\",\"franchise\":\"0003\",\"transaction\":\"11182|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592440471\",\"franchise\":\"0016\",\"transaction\":\"11182|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592439978\",\"franchise\":\"0015\",\"transaction\":\"14850|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592438101\",\"franchise\":\"0004\",\"transaction\":\"14857|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592437601\",\"franchise\":\"0003\",\"transaction\":\"10389|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592427065\",\"franchise\":\"0002\",\"transaction\":\"15021|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592425436\",\"franchise\":\"0011\",\"transaction\":\"9308|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592422905\",\"franchise\":\"0011\",\"transaction\":\"9308|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592422879\",\"franchise\":\"0011\",\"transaction\":\"14075|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592422863\",\"franchise\":\"0015\",\"transaction\":\"14075|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592417777\",\"franchise\":\"0014\",\"transaction\":\"13662|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592417393\",\"franchise\":\"0002\",\"transaction\":\"14082|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592415955\",\"franchise\":\"0015\",\"transaction\":\"14075|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592412803\",\"franchise\":\"0003\",\"transaction\":\"14075|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592410915\",\"franchise\":\"0013\",\"transaction\":\"14075|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592410806\",\"franchise\":\"0006\",\"transaction\":\"14863|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592410806\",\"franchise\":\"0014\",\"transaction\":\"13772|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592404974\",\"franchise\":\"0004\",\"transaction\":\"14857|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592403651\",\"franchise\":\"0006\",\"transaction\":\"14863|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592403616\",\"franchise\":\"0006\",\"transaction\":\"14863|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592403085\",\"franchise\":\"0015\",\"transaction\":\"15021|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592402995\",\"franchise\":\"0016\",\"transaction\":\"13382|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592401936\",\"franchise\":\"0009\",\"transaction\":\"10948|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592396501\",\"franchise\":\"0006\",\"transaction\":\"14863|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592396345\",\"franchise\":\"0006\",\"transaction\":\"14863|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592396345\",\"franchise\":\"0015\",\"transaction\":\"14850|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592396314\",\"franchise\":\"0006\",\"transaction\":\"14863|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592396314\",\"franchise\":\"0012\",\"transaction\":\"14850|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592394856\",\"franchise\":\"0004\",\"transaction\":\"14857|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592394175\",\"franchise\":\"0003\",\"transaction\":\"10389|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592379058\",\"franchise\":\"0010\",\"transaction\":\"14017|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592374169\",\"franchise\":\"0002\",\"transaction\":\"14082|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592367065\",\"franchise\":\"0014\",\"transaction\":\"13772|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592366572\",\"franchise\":\"0006\",\"transaction\":\"14863|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592366528\",\"franchise\":\"0012\",\"transaction\":\"14850|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592365258\",\"franchise\":\"0001\",\"transaction\":\"14973|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592364755\",\"franchise\":\"0002\",\"transaction\":\"11657|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592359219\",\"franchise\":\"0016\",\"transaction\":\"13382|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592356180\",\"franchise\":\"0009\",\"transaction\":\"14813|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592356180\",\"franchise\":\"0004\",\"transaction\":\"14127|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592351386\",\"franchise\":\"0005\",\"transaction\":\"14984|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592348584\",\"franchise\":\"0006\",\"transaction\":\"14845|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592335591\",\"franchise\":\"0010\",\"transaction\":\"14017|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592327296\",\"franchise\":\"0014\",\"transaction\":\"14872|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592326231\",\"franchise\":\"0013\",\"transaction\":\"14106|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592326231\",\"franchise\":\"0010\",\"transaction\":\"12188|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592324677\",\"franchise\":\"0001\",\"transaction\":\"14973|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592324667\",\"franchise\":\"0004\",\"transaction\":\"14127|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592324657\",\"franchise\":\"0006\",\"transaction\":\"14845|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592324465\",\"franchise\":\"0011\",\"transaction\":\"14873|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592324465\",\"franchise\":\"0013\",\"transaction\":\"14868|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592323736\",\"franchise\":\"0015\",\"transaction\":\"13637|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592323621\",\"franchise\":\"0012\",\"transaction\":\"12206|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592321935\",\"franchise\":\"0001\",\"transaction\":\"14973|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592321220\",\"franchise\":\"0002\",\"transaction\":\"11657|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592321200\",\"franchise\":\"0016\",\"transaction\":\"12645|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592317451\",\"franchise\":\"0001\",\"transaction\":\"13418|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592316160\",\"franchise\":\"0001\",\"transaction\":\"14972|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592312772\",\"franchise\":\"0004\",\"transaction\":\"14127|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592312696\",\"franchise\":\"0009\",\"transaction\":\"14813|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592310404\",\"franchise\":\"0015\",\"transaction\":\"11657|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592308183\",\"franchise\":\"0003\",\"transaction\":\"11657|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592307920\",\"franchise\":\"0005\",\"transaction\":\"14984|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592304055\",\"franchise\":\"0006\",\"transaction\":\"14845|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592298167\",\"franchise\":\"0005\",\"transaction\":\"14464|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592283862\",\"franchise\":\"0014\",\"transaction\":\"14872|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592283031\",\"franchise\":\"0010\",\"transaction\":\"12188|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592282818\",\"franchise\":\"0013\",\"transaction\":\"14106|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592282725\",\"franchise\":\"0002\",\"transaction\":\"14106|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592281270\",\"franchise\":\"0011\",\"transaction\":\"14873|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592281264\",\"franchise\":\"0015\",\"transaction\":\"13637|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592281257\",\"franchise\":\"0001\",\"transaction\":\"14972|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592280832\",\"franchise\":\"0011\",\"transaction\":\"14873|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592280733\",\"franchise\":\"0013\",\"transaction\":\"14868|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592280592\",\"franchise\":\"0002\",\"transaction\":\"7877|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592280503\",\"franchise\":\"0015\",\"transaction\":\"13637|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592280070\",\"franchise\":\"0012\",\"transaction\":\"12206|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592279491\",\"franchise\":\"0013\",\"transaction\":\"13880|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592277486\",\"franchise\":\"0016\",\"transaction\":\"12645|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592272994\",\"franchise\":\"0001\",\"transaction\":\"13418|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592272959\",\"franchise\":\"0001\",\"transaction\":\"14972|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592271446\",\"franchise\":\"0009\",\"transaction\":\"11925|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592266886\",\"franchise\":\"0011\",\"transaction\":\"14841|20|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592266886\",\"franchise\":\"0006\",\"transaction\":\"14780|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592266886\",\"franchise\":\"0011\",\"transaction\":\"13139|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592266886\",\"franchise\":\"0006\",\"transaction\":\"10313|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592266486\",\"franchise\":\"0011\",\"transaction\":\"14125|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592266486\",\"franchise\":\"0011\",\"transaction\":\"14121|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592258769\",\"franchise\":\"0011\",\"transaction\":\"14121|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592253615\",\"franchise\":\"0005\",\"transaction\":\"14464|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592246208\",\"franchise\":\"0001\",\"transaction\":\"14847|23|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592244206\",\"franchise\":\"0004\",\"transaction\":\"13418|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592244201\",\"franchise\":\"0009\",\"transaction\":\"11925|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592244195\",\"franchise\":\"0011\",\"transaction\":\"13139|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592240926\",\"franchise\":\"0004\",\"transaction\":\"11660|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592237339\",\"franchise\":\"0002\",\"transaction\":\"7877|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592236915\",\"franchise\":\"0003\",\"transaction\":\"12657|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592235988\",\"franchise\":\"0001\",\"transaction\":\"14869|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592234786\",\"franchise\":\"0013\",\"transaction\":\"13880|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592234601\",\"franchise\":\"0013\",\"transaction\":\"14341|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592233234\",\"franchise\":\"0004\",\"transaction\":\"13418|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592233149\",\"franchise\":\"0001\",\"transaction\":\"14869|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592233116\",\"franchise\":\"0004\",\"transaction\":\"12505|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592229106\",\"demoted\":\"\",\"franchise\":\"0004\",\"promoted\":\"10297,12912,13988,\",\"type\":\"TAXI\"},{\"timestamp\":\"1592228198\",\"franchise\":\"0009\",\"transaction\":\"11925|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592225596\",\"franchise\":\"0011\",\"transaction\":\"14121|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592224639\",\"franchise\":\"0011\",\"transaction\":\"14121|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223775\",\"franchise\":\"0011\",\"transaction\":\"14121|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223720\",\"franchise\":\"0011\",\"transaction\":\"14125|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223565\",\"franchise\":\"0006\",\"transaction\":\"10313|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223555\",\"franchise\":\"0006\",\"transaction\":\"14780|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223488\",\"franchise\":\"0011\",\"transaction\":\"14841|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223470\",\"franchise\":\"0011\",\"transaction\":\"13139|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592223213\",\"franchise\":\"0006\",\"transaction\":\"14841|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223073\",\"franchise\":\"0011\",\"transaction\":\"14841|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223066\",\"franchise\":\"0011\",\"transaction\":\"14125|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223046\",\"franchise\":\"0006\",\"transaction\":\"14841|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223039\",\"franchise\":\"0011\",\"transaction\":\"14121|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223031\",\"franchise\":\"0006\",\"transaction\":\"14841|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592223011\",\"franchise\":\"0006\",\"transaction\":\"14841|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592202540\",\"franchise\":\"0001\",\"transaction\":\"14847|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592202540\",\"franchise\":\"0001\",\"transaction\":\"14780|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592201033\",\"franchise\":\"0012\",\"transaction\":\"14107|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592195020\",\"franchise\":\"0004\",\"transaction\":\"11660|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592194786\",\"franchise\":\"0006\",\"transaction\":\"14121|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592194684\",\"franchise\":\"0015\",\"transaction\":\"11660|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592194486\",\"franchise\":\"0015\",\"transaction\":\"11660|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592193878\",\"franchise\":\"0012\",\"transaction\":\"14780|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592193713\",\"franchise\":\"0003\",\"transaction\":\"12657|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592192583\",\"franchise\":\"0006\",\"transaction\":\"14841|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592192522\",\"franchise\":\"0015\",\"transaction\":\"10313|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592192221\",\"franchise\":\"0001\",\"transaction\":\"14869|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592191928\",\"franchise\":\"0006\",\"transaction\":\"14841|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592191839\",\"franchise\":\"0006\",\"transaction\":\"14841|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592191839\",\"franchise\":\"0015\",\"transaction\":\"14125|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592191044\",\"franchise\":\"0013\",\"transaction\":\"14341|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592189768\",\"franchise\":\"0004\",\"transaction\":\"12505|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592189470\",\"franchise\":\"0006\",\"transaction\":\"14121|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592189103\",\"franchise\":\"0006\",\"transaction\":\"14841|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592189096\",\"franchise\":\"0014\",\"transaction\":\"14841|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592188530\",\"franchise\":\"0015\",\"transaction\":\"12616|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592188217\",\"franchise\":\"0009\",\"transaction\":\"13348|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592187854\",\"franchise\":\"0012\",\"transaction\":\"14125|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592187647\",\"franchise\":\"0016\",\"transaction\":\"14125|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592187420\",\"franchise\":\"0014\",\"transaction\":\"14841|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592184069\",\"franchise\":\"0016\",\"transaction\":\"13642|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592183078\",\"franchise\":\"0006\",\"transaction\":\"14870|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592181447\",\"franchise\":\"0011\",\"transaction\":\"14939|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592178304\",\"franchise\":\"0011\",\"transaction\":\"14847|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592178223\",\"franchise\":\"0012\",\"transaction\":\"14107|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592170273\",\"franchise\":\"0001\",\"transaction\":\"14847|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592169355\",\"franchise\":\"0010\",\"transaction\":\"12505|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592164455\",\"franchise\":\"0006\",\"transaction\":\"10313|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592164065\",\"franchise\":\"0002\",\"transaction\":\"10313|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592160211\",\"franchise\":\"0004\",\"transaction\":\"13664|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592157226\",\"franchise\":\"0012\",\"transaction\":\"14107|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592154908\",\"franchise\":\"0015\",\"transaction\":\"14858|17|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592152682\",\"franchise\":\"0015\",\"transaction\":\"14806|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592151155\",\"franchise\":\"0012\",\"transaction\":\"11337|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592150418\",\"franchise\":\"0003\",\"transaction\":\"11399|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592150154\",\"franchise\":\"0015\",\"transaction\":\"12616|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592150119\",\"franchise\":\"0011\",\"transaction\":\"14939|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592150109\",\"franchise\":\"0004\",\"transaction\":\"13664|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592150096\",\"franchise\":\"0004\",\"transaction\":\"13664|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592150078\",\"franchise\":\"0015\",\"transaction\":\"14806|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592150066\",\"franchise\":\"0003\",\"transaction\":\"11399|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592149471\",\"franchise\":\"0001\",\"transaction\":\"14815|8|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592147386\",\"franchise\":\"0011\",\"transaction\":\"14107|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592145302\",\"franchise\":\"0015\",\"transaction\":\"12616|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592144889\",\"franchise\":\"0009\",\"transaction\":\"13348|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592140142\",\"franchise\":\"0016\",\"transaction\":\"13642|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592139828\",\"franchise\":\"0006\",\"transaction\":\"14870|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592138613\",\"franchise\":\"0011\",\"transaction\":\"14107|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592138201\",\"franchise\":\"0011\",\"transaction\":\"14107|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592138069\",\"franchise\":\"0011\",\"transaction\":\"14939|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592138062\",\"franchise\":\"0011\",\"transaction\":\"14870|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592138034\",\"franchise\":\"0011\",\"transaction\":\"14847|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592138021\",\"franchise\":\"0001\",\"transaction\":\"14847|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592136815\",\"franchise\":\"0005\",\"transaction\":\"14939|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592136752\",\"franchise\":\"0006\",\"transaction\":\"14870|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592133770\",\"franchise\":\"0006\",\"transaction\":\"14870|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592124742\",\"franchise\":\"0011\",\"transaction\":\"13617|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592116671\",\"franchise\":\"0004\",\"transaction\":\"13664|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592116581\",\"franchise\":\"0010\",\"transaction\":\"13768|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592115924\",\"franchise\":\"0015\",\"transaction\":\"10973|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592111100\",\"franchise\":\"0015\",\"transaction\":\"14858|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592110130\",\"franchise\":\"0001\",\"transaction\":\"14858|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592109263\",\"franchise\":\"0015\",\"transaction\":\"14858|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592109234\",\"franchise\":\"0001\",\"transaction\":\"14858|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592109219\",\"franchise\":\"0001\",\"transaction\":\"14858|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592109219\",\"franchise\":\"0015\",\"transaction\":\"14806|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592107748\",\"franchise\":\"0012\",\"transaction\":\"11337|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592107626\",\"franchise\":\"0014\",\"transaction\":\"14806|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592107570\",\"franchise\":\"0001\",\"transaction\":\"14858|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592107218\",\"franchise\":\"0003\",\"transaction\":\"11399|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592105942\",\"franchise\":\"0001\",\"transaction\":\"14858|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592105902\",\"franchise\":\"0001\",\"transaction\":\"14847|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592105902\",\"franchise\":\"0001\",\"transaction\":\"14815|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592104815\",\"franchise\":\"0015\",\"transaction\":\"14815|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592103723\",\"franchise\":\"0004\",\"transaction\":\"6997|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592103723\",\"franchise\":\"0015\",\"transaction\":\"13793|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592103723\",\"franchise\":\"0004\",\"transaction\":\"13194|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592100643\",\"franchise\":\"0009\",\"transaction\":\"13621|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592096744\",\"franchise\":\"0005\",\"transaction\":\"11257|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592095532\",\"franchise\":\"0010\",\"transaction\":\"13768|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592095507\",\"franchise\":\"0004\",\"transaction\":\"13194|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592095499\",\"franchise\":\"0004\",\"transaction\":\"13194|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592095429\",\"franchise\":\"0009\",\"transaction\":\"13621|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592095419\",\"franchise\":\"0009\",\"transaction\":\"13621|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592095408\",\"franchise\":\"0005\",\"transaction\":\"11257|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592094339\",\"franchise\":\"0011\",\"transaction\":\"14613|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592094339\",\"franchise\":\"0011\",\"transaction\":\"14305|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592086896\",\"franchise\":\"0004\",\"transaction\":\"6997|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592080660\",\"franchise\":\"0011\",\"transaction\":\"13617|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592080649\",\"franchise\":\"0015\",\"transaction\":\"14815|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592080637\",\"franchise\":\"0011\",\"transaction\":\"14847|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592080627\",\"franchise\":\"0015\",\"transaction\":\"14847|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592075728\",\"franchise\":\"0010\",\"transaction\":\"13768|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592073159\",\"franchise\":\"0013\",\"transaction\":\"13617|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592073041\",\"franchise\":\"0010\",\"transaction\":\"13768|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592072979\",\"franchise\":\"0015\",\"transaction\":\"13793|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592071863\",\"franchise\":\"0015\",\"transaction\":\"10973|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592071838\",\"franchise\":\"0015\",\"transaction\":\"14815|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592066166\",\"franchise\":\"0005\",\"transaction\":\"11257|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592065846\",\"franchise\":\"0004\",\"transaction\":\"10973|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592065322\",\"franchise\":\"0004\",\"transaction\":\"10973|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592064643\",\"franchise\":\"0012\",\"transaction\":\"13176|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592064101\",\"franchise\":\"0003\",\"transaction\":\"13649|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592063723\",\"franchise\":\"0009\",\"transaction\":\"14815|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592060683\",\"franchise\":\"0002\",\"transaction\":\"14815|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592060204\",\"franchise\":\"0015\",\"transaction\":\"13793|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592059814\",\"franchise\":\"0004\",\"transaction\":\"6997|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592059766\",\"franchise\":\"0004\",\"transaction\":\"13194|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592059766\",\"franchise\":\"0004\",\"transaction\":\"10973|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592059724\",\"franchise\":\"0015\",\"transaction\":\"13793|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592059691\",\"franchise\":\"0015\",\"transaction\":\"14847|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592056723\",\"franchise\":\"0009\",\"transaction\":\"13621|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592053491\",\"franchise\":\"0005\",\"transaction\":\"11257|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592053341\",\"franchise\":\"0011\",\"transaction\":\"14847|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592053286\",\"franchise\":\"0014\",\"transaction\":\"10973|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592050829\",\"franchise\":\"0011\",\"transaction\":\"14847|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592050809\",\"franchise\":\"0011\",\"transaction\":\"14305|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592050771\",\"franchise\":\"0011\",\"transaction\":\"14613|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592048080\",\"franchise\":\"0006\",\"transaction\":\"14847|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592046512\",\"franchise\":\"0006\",\"transaction\":\"14239|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592046512\",\"franchise\":\"0005\",\"transaction\":\"13623|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592046512\",\"franchise\":\"0005\",\"transaction\":\"10723|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592042178\",\"franchise\":\"0016\",\"transaction\":\"13194|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592042144\",\"franchise\":\"0008\",\"transaction\":\"14783|20|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592042144\",\"franchise\":\"0004\",\"transaction\":\"13645|6|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592042144\",\"franchise\":\"0008\",\"transaction\":\"11227|9|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592038712\",\"franchise\":\"0002\",\"transaction\":\"14195|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592038712\",\"franchise\":\"0002\",\"transaction\":\"13246|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592038712\",\"franchise\":\"0001\",\"transaction\":\"12656|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592038712\",\"franchise\":\"0002\",\"transaction\":\"11761|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592030499\",\"franchise\":\"0007\",\"transaction\":\"14804|31|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592030499\",\"franchise\":\"0007\",\"transaction\":\"14086|6|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592021222\",\"franchise\":\"0012\",\"transaction\":\"13176|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592020886\",\"franchise\":\"0003\",\"transaction\":\"13649|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592017647\",\"franchise\":\"0008\",\"transaction\":\"14783|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592017552\",\"franchise\":\"0008\",\"transaction\":\"14783|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592017462\",\"franchise\":\"0008\",\"transaction\":\"14783|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592017449\",\"franchise\":\"0008\",\"transaction\":\"14783|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592017435\",\"franchise\":\"0008\",\"transaction\":\"14783|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592014302\",\"franchise\":\"0001\",\"transaction\":\"14613|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592013204\",\"franchise\":\"0009\",\"transaction\":\"14209|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592013204\",\"franchise\":\"0009\",\"transaction\":\"14114|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1592008799\",\"franchise\":\"0011\",\"transaction\":\"14613|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1592000687\",\"franchise\":\"0005\",\"transaction\":\"13623|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1592000566\",\"franchise\":\"0005\",\"transaction\":\"10723|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591999812\",\"franchise\":\"0008\",\"transaction\":\"14783|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591999793\",\"franchise\":\"0006\",\"transaction\":\"14239|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591999749\",\"franchise\":\"0008\",\"transaction\":\"14783|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591999713\",\"franchise\":\"0008\",\"transaction\":\"14783|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591999603\",\"franchise\":\"0008\",\"transaction\":\"14783|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591997542\",\"franchise\":\"0008\",\"transaction\":\"11227|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591997519\",\"franchise\":\"0008\",\"transaction\":\"11227|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591997415\",\"franchise\":\"0004\",\"transaction\":\"13645|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591997119\",\"franchise\":\"0008\",\"transaction\":\"14783|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591997119\",\"franchise\":\"0008\",\"transaction\":\"11227|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591996548\",\"franchise\":\"0011\",\"transaction\":\"14239|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591996518\",\"franchise\":\"0010\",\"transaction\":\"14239|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591996456\",\"franchise\":\"0011\",\"transaction\":\"14613|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591996448\",\"franchise\":\"0011\",\"transaction\":\"11227|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591994970\",\"franchise\":\"0001\",\"transaction\":\"12656|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591994191\",\"franchise\":\"0010\",\"transaction\":\"14239|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591994106\",\"franchise\":\"0012\",\"transaction\":\"13645|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591994096\",\"franchise\":\"0004\",\"transaction\":\"13645|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591993891\",\"franchise\":\"0007\",\"transaction\":\"14086|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591993882\",\"franchise\":\"0002\",\"transaction\":\"13246|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591993871\",\"franchise\":\"0009\",\"transaction\":\"14114|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591993866\",\"franchise\":\"0009\",\"transaction\":\"14209|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591993311\",\"franchise\":\"0002\",\"transaction\":\"14195|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591991701\",\"franchise\":\"0007\",\"transaction\":\"14086|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591991684\",\"franchise\":\"0002\",\"transaction\":\"13246|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591991684\",\"franchise\":\"0002\",\"transaction\":\"11761|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591987547\",\"franchise\":\"0006\",\"transaction\":\"14783|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591987537\",\"franchise\":\"0015\",\"transaction\":\"14783|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591985972\",\"franchise\":\"0009\",\"transaction\":\"14114|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591985903\",\"franchise\":\"0007\",\"transaction\":\"14086|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591985886\",\"franchise\":\"0015\",\"transaction\":\"14783|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591983597\",\"franchise\":\"0007\",\"transaction\":\"14804|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591983584\",\"franchise\":\"0007\",\"transaction\":\"14086|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591982897\",\"franchise\":\"0013\",\"transaction\":\"13246|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591982865\",\"franchise\":\"0013\",\"transaction\":\"11761|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591981160\",\"franchise\":\"0010\",\"transaction\":\"13240|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591977086\",\"franchise\":\"0006\",\"transaction\":\"14783|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591973745\",\"franchise\":\"0004\",\"transaction\":\"14195|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591973252\",\"franchise\":\"0012\",\"transaction\":\"14864|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591969705\",\"franchise\":\"0009\",\"transaction\":\"14114|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591969669\",\"franchise\":\"0003\",\"transaction\":\"10723|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591969572\",\"franchise\":\"0004\",\"transaction\":\"13645|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591969530\",\"franchise\":\"0009\",\"transaction\":\"14209|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591969521\",\"franchise\":\"0004\",\"transaction\":\"11227|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591968153\",\"franchise\":\"0006\",\"transaction\":\"14613|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591967820\",\"franchise\":\"0011\",\"transaction\":\"14783|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591967580\",\"franchise\":\"0014\",\"transaction\":\"10723|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591965743\",\"franchise\":\"0011\",\"transaction\":\"14804|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591965721\",\"franchise\":\"0011\",\"transaction\":\"14783|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591965683\",\"franchise\":\"0015\",\"transaction\":\"14613|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591965676\",\"franchise\":\"0003\",\"transaction\":\"14195|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591962914\",\"franchise\":\"0015\",\"transaction\":\"14613|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591962829\",\"franchise\":\"0015\",\"transaction\":\"14804|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591961961\",\"franchise\":\"0002\",\"transaction\":\"11761|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591961866\",\"franchise\":\"0003\",\"transaction\":\"9075|12|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591959283\",\"franchise\":\"0006\",\"transaction\":\"14209|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591959068\",\"franchise\":\"0008\",\"transaction\":\"9925|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591959068\",\"franchise\":\"0008\",\"transaction\":\"13763|9|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591959068\",\"franchise\":\"0008\",\"transaction\":\"13155|8|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591959068\",\"franchise\":\"0008\",\"transaction\":\"10308|8|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591955868\",\"franchise\":\"0004\",\"transaction\":\"13645|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591955838\",\"franchise\":\"0004\",\"transaction\":\"11227|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591947447\",\"franchise\":\"0001\",\"transaction\":\"13622|10|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591947447\",\"franchise\":\"0014\",\"transaction\":\"13412|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591947447\",\"franchise\":\"0007\",\"transaction\":\"12141|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591937689\",\"franchise\":\"0010\",\"transaction\":\"13240|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591934702\",\"franchise\":\"0003\",\"transaction\":\"14195|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591934661\",\"franchise\":\"0003\",\"transaction\":\"14816|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591930530\",\"franchise\":\"0012\",\"transaction\":\"11227|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591929989\",\"franchise\":\"0016\",\"transaction\":\"11227|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591929168\",\"franchise\":\"0012\",\"transaction\":\"14864|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591928217\",\"franchise\":\"0008\",\"transaction\":\"13155|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591928194\",\"franchise\":\"0001\",\"transaction\":\"13622|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591927715\",\"franchise\":\"0008\",\"transaction\":\"9925|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591927704\",\"franchise\":\"0008\",\"transaction\":\"13763|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591927698\",\"franchise\":\"0008\",\"transaction\":\"13155|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591927692\",\"franchise\":\"0008\",\"transaction\":\"10308|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591927029\",\"franchise\":\"0011\",\"transaction\":\"14782|8|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591926360\",\"demoted\":\"10297,12912,13988,\",\"franchise\":\"0004\",\"promoted\":\"\",\"type\":\"TAXI\"},{\"timestamp\":\"1591925857\",\"franchise\":\"0011\",\"transaction\":\"14864|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591925812\",\"franchise\":\"0004\",\"transaction\":\"11672|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591925305\",\"franchise\":\"0008\",\"transaction\":\"10308|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591923970\",\"franchise\":\"0004\",\"transaction\":\"14116|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591922507\",\"franchise\":\"0011\",\"transaction\":\"14804|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591917188\",\"franchise\":\"0003\",\"transaction\":\"9075|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591916407\",\"franchise\":\"0001\",\"transaction\":\"13622|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591916395\",\"franchise\":\"0001\",\"transaction\":\"13622|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591916343\",\"franchise\":\"0007\",\"transaction\":\"12141|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591916305\",\"franchise\":\"0005\",\"transaction\":\"13615|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591914940\",\"franchise\":\"0008\",\"transaction\":\"9925|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591914908\",\"franchise\":\"0008\",\"transaction\":\"9075|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591914908\",\"franchise\":\"0008\",\"transaction\":\"13763|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591914908\",\"franchise\":\"0008\",\"transaction\":\"13155|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591914908\",\"franchise\":\"0008\",\"transaction\":\"10308|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591903512\",\"franchise\":\"0014\",\"transaction\":\"13412|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591901632\",\"franchise\":\"0013\",\"transaction\":\"13412|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591901606\",\"franchise\":\"0001\",\"transaction\":\"13622|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898912\",\"franchise\":\"0009\",\"transaction\":\"13155|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898906\",\"franchise\":\"0005\",\"transaction\":\"10308|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898883\",\"franchise\":\"0011\",\"transaction\":\"14782|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898878\",\"franchise\":\"0011\",\"transaction\":\"14782|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898865\",\"franchise\":\"0004\",\"transaction\":\"11672|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898858\",\"franchise\":\"0004\",\"transaction\":\"14116|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898125\",\"franchise\":\"0003\",\"transaction\":\"9075|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591898109\",\"franchise\":\"0001\",\"transaction\":\"13622|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591898027\",\"franchise\":\"0007\",\"transaction\":\"12141|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591897444\",\"franchise\":\"0007\",\"transaction\":\"12141|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591897426\",\"franchise\":\"0007\",\"transaction\":\"14804|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591892944\",\"franchise\":\"0012\",\"transaction\":\"14864|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591892045\",\"franchise\":\"0004\",\"transaction\":\"12328|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591889568\",\"franchise\":\"0003\",\"transaction\":\"9075|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591889414\",\"franchise\":\"0006\",\"transaction\":\"13763|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591888583\",\"franchise\":\"0006\",\"transaction\":\"14864|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591888175\",\"franchise\":\"0011\",\"transaction\":\"13763|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591885861\",\"franchise\":\"0009\",\"transaction\":\"13155|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591885166\",\"franchise\":\"0006\",\"transaction\":\"14143|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591883420\",\"franchise\":\"0005\",\"transaction\":\"13155|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591883420\",\"franchise\":\"0005\",\"transaction\":\"10308|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591883394\",\"franchise\":\"0011\",\"transaction\":\"14804|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591883380\",\"franchise\":\"0015\",\"transaction\":\"14804|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591883361\",\"franchise\":\"0011\",\"transaction\":\"14782|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591882438\",\"franchise\":\"0004\",\"transaction\":\"11672|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591881676\",\"franchise\":\"0004\",\"transaction\":\"14116|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591881663\",\"franchise\":\"0004\",\"transaction\":\"9075|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591881649\",\"franchise\":\"0006\",\"transaction\":\"14782|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591881421\",\"franchise\":\"0014\",\"transaction\":\"13236|13|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591881236\",\"franchise\":\"0016\",\"transaction\":\"13679|18|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591881236\",\"franchise\":\"0005\",\"transaction\":\"12205|4|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591880283\",\"franchise\":\"0004\",\"transaction\":\"9075|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591880283\",\"franchise\":\"0004\",\"transaction\":\"14116|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591879063\",\"franchise\":\"0009\",\"transaction\":\"13155|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591878982\",\"franchise\":\"0015\",\"transaction\":\"14804|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591878764\",\"franchise\":\"0015\",\"transaction\":\"14804|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591878706\",\"franchise\":\"0009\",\"transaction\":\"13155|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591877519\",\"franchise\":\"0015\",\"transaction\":\"9075|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591877482\",\"franchise\":\"0015\",\"transaction\":\"14804|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591876019\",\"franchise\":\"0003\",\"transaction\":\"14116|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591875877\",\"franchise\":\"0014\",\"transaction\":\"10308|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591875488\",\"franchise\":\"0014\",\"transaction\":\"10308|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591874740\",\"franchise\":\"0011\",\"transaction\":\"14116|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591874574\",\"franchise\":\"0014\",\"transaction\":\"10308|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591873590\",\"franchise\":\"0009\",\"transaction\":\"12110|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591873079\",\"franchise\":\"0005\",\"transaction\":\"13615|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591873023\",\"franchise\":\"0005\",\"transaction\":\"14804|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591873001\",\"franchise\":\"0006\",\"transaction\":\"13763|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591862246\",\"franchise\":\"0002\",\"transaction\":\"13726|9|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591862246\",\"franchise\":\"0004\",\"transaction\":\"13632|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591862246\",\"franchise\":\"0001\",\"transaction\":\"13192|14|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591857703\",\"franchise\":\"0006\",\"transaction\":\"14804|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591857703\",\"franchise\":\"0006\",\"transaction\":\"14782|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591857654\",\"franchise\":\"0006\",\"transaction\":\"13763|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591857640\",\"franchise\":\"0002\",\"transaction\":\"14804|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591854923\",\"franchise\":\"0002\",\"transaction\":\"14804|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591854910\",\"franchise\":\"0012\",\"transaction\":\"14804|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591854892\",\"franchise\":\"0004\",\"transaction\":\"14782|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591854879\",\"franchise\":\"0002\",\"transaction\":\"13763|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591854810\",\"franchise\":\"0005\",\"transaction\":\"14093|8|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591849856\",\"franchise\":\"0012\",\"transaction\":\"14804|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591849119\",\"franchise\":\"0004\",\"transaction\":\"13632|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591848828\",\"franchise\":\"0004\",\"transaction\":\"12328|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591848751\",\"franchise\":\"0004\",\"transaction\":\"14782|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591848527\",\"franchise\":\"0001\",\"transaction\":\"13148|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591848114\",\"franchise\":\"0003\",\"transaction\":\"14782|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591847836\",\"franchise\":\"0010\",\"transaction\":\"11390|10|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591847174\",\"franchise\":\"0012\",\"transaction\":\"13850|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591846771\",\"franchise\":\"0015\",\"transaction\":\"14807|30|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591843779\",\"franchise\":\"0008\",\"transaction\":\"14123|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591843779\",\"franchise\":\"0008\",\"transaction\":\"13809|9|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591841218\",\"franchise\":\"0006\",\"transaction\":\"14143|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591841191\",\"franchise\":\"0014\",\"transaction\":\"13236|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591840343\",\"franchise\":\"0002\",\"transaction\":\"13726|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591840188\",\"franchise\":\"0015\",\"transaction\":\"12328|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591840178\",\"franchise\":\"0005\",\"transaction\":\"14093|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591840167\",\"franchise\":\"0008\",\"transaction\":\"13809|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591838140\",\"franchise\":\"0014\",\"transaction\":\"13236|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591837178\",\"franchise\":\"0016\",\"transaction\":\"13679|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591837155\",\"franchise\":\"0005\",\"transaction\":\"12205|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591833358\",\"franchise\":\"0006\",\"transaction\":\"13236|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591833301\",\"franchise\":\"0003\",\"transaction\":\"14146|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591831591\",\"franchise\":\"0015\",\"transaction\":\"12328|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591831539\",\"franchise\":\"0015\",\"transaction\":\"13236|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591831481\",\"franchise\":\"0006\",\"transaction\":\"13236|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591830255\",\"franchise\":\"0009\",\"transaction\":\"12110|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591830237\",\"franchise\":\"0014\",\"transaction\":\"12110|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591829950\",\"franchise\":\"0007\",\"transaction\":\"14801|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591827013\",\"franchise\":\"0014\",\"transaction\":\"12110|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591824962\",\"franchise\":\"0008\",\"transaction\":\"13809|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591824953\",\"franchise\":\"0006\",\"transaction\":\"13236|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591817648\",\"franchise\":\"0001\",\"transaction\":\"14143|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591817124\",\"franchise\":\"0004\",\"transaction\":\"13632|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591816665\",\"franchise\":\"0002\",\"transaction\":\"13726|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591816074\",\"franchise\":\"0001\",\"transaction\":\"14143|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591816074\",\"franchise\":\"0001\",\"transaction\":\"13192|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591814180\",\"franchise\":\"0011\",\"transaction\":\"14143|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591814140\",\"franchise\":\"0006\",\"transaction\":\"13726|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591814117\",\"franchise\":\"0011\",\"transaction\":\"14143|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591814111\",\"franchise\":\"0011\",\"transaction\":\"14143|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591814104\",\"franchise\":\"0011\",\"transaction\":\"14143|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591810132\",\"franchise\":\"0011\",\"transaction\":\"14143|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591808851\",\"franchise\":\"0005\",\"transaction\":\"14143|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591808647\",\"franchise\":\"0002\",\"transaction\":\"13192|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591808294\",\"franchise\":\"0005\",\"transaction\":\"14093|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591808246\",\"franchise\":\"0005\",\"transaction\":\"14143|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591808205\",\"franchise\":\"0005\",\"transaction\":\"13726|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591807887\",\"franchise\":\"0002\",\"transaction\":\"14088|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591806720\",\"franchise\":\"0006\",\"transaction\":\"13726|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805218\",\"franchise\":\"0004\",\"transaction\":\"13679|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805201\",\"franchise\":\"0001\",\"transaction\":\"13679|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805103\",\"franchise\":\"0001\",\"transaction\":\"13726|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805103\",\"franchise\":\"0001\",\"transaction\":\"13679|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805103\",\"franchise\":\"0001\",\"transaction\":\"13192|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805103\",\"franchise\":\"0001\",\"transaction\":\"13148|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805071\",\"franchise\":\"0001\",\"transaction\":\"13632|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591805029\",\"franchise\":\"0001\",\"transaction\":\"13632|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591804953\",\"franchise\":\"0004\",\"transaction\":\"13679|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591804587\",\"franchise\":\"0012\",\"transaction\":\"13726|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591804559\",\"franchise\":\"0010\",\"transaction\":\"13726|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591804536\",\"franchise\":\"0010\",\"transaction\":\"11390|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591804021\",\"franchise\":\"0002\",\"transaction\":\"13868|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591803785\",\"franchise\":\"0012\",\"transaction\":\"13850|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803461\",\"franchise\":\"0015\",\"transaction\":\"13850|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591803380\",\"franchise\":\"0015\",\"transaction\":\"14807|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803363\",\"franchise\":\"0015\",\"transaction\":\"12205|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803342\",\"franchise\":\"0007\",\"transaction\":\"14807|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803332\",\"franchise\":\"0007\",\"transaction\":\"14807|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803088\",\"franchise\":\"0002\",\"transaction\":\"13192|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803079\",\"franchise\":\"0002\",\"transaction\":\"13192|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803059\",\"franchise\":\"0002\",\"transaction\":\"14088|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803034\",\"franchise\":\"0007\",\"transaction\":\"14801|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803016\",\"franchise\":\"0006\",\"transaction\":\"13236|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803010\",\"franchise\":\"0008\",\"transaction\":\"14123|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591803005\",\"franchise\":\"0008\",\"transaction\":\"13809|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591800518\",\"franchise\":\"0008\",\"transaction\":\"13809|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591800503\",\"franchise\":\"0008\",\"transaction\":\"14123|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591800503\",\"franchise\":\"0014\",\"transaction\":\"13679|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591800095\",\"franchise\":\"0015\",\"transaction\":\"14844|41|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591799584\",\"franchise\":\"0004\",\"transaction\":\"11695|11|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591797478\",\"franchise\":\"0011\",\"transaction\":\"12205|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591797100\",\"franchise\":\"0006\",\"transaction\":\"13236|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591796788\",\"franchise\":\"0004\",\"transaction\":\"13148|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591796788\",\"franchise\":\"0004\",\"transaction\":\"12110|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591796759\",\"franchise\":\"0004\",\"transaction\":\"13236|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591796630\",\"franchise\":\"0009\",\"transaction\":\"12110|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591796529\",\"franchise\":\"0013\",\"transaction\":\"13148|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591796409\",\"franchise\":\"0016\",\"transaction\":\"8062|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591794253\",\"franchise\":\"0011\",\"transaction\":\"12205|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591792365\",\"franchise\":\"0014\",\"transaction\":\"13679|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591791858\",\"franchise\":\"0007\",\"transaction\":\"14801|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591791812\",\"franchise\":\"0007\",\"transaction\":\"14093|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591791772\",\"franchise\":\"0007\",\"transaction\":\"14801|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591791545\",\"franchise\":\"0015\",\"transaction\":\"14123|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591791524\",\"franchise\":\"0015\",\"transaction\":\"13679|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591789815\",\"franchise\":\"0003\",\"transaction\":\"14146|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591789311\",\"franchise\":\"0014\",\"transaction\":\"13679|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591786987\",\"franchise\":\"0014\",\"transaction\":\"13679|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591786965\",\"franchise\":\"0004\",\"transaction\":\"11695|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591786055\",\"franchise\":\"0007\",\"transaction\":\"14801|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591785995\",\"franchise\":\"0007\",\"transaction\":\"14807|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591785995\",\"franchise\":\"0007\",\"transaction\":\"14093|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591785995\",\"franchise\":\"0007\",\"transaction\":\"11390|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591785922\",\"franchise\":\"0001\",\"transaction\":\"14798|40|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591785922\",\"franchise\":\"0004\",\"transaction\":\"12317|11|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591782203\",\"franchise\":\"0006\",\"transaction\":\"14837|38|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591782203\",\"franchise\":\"0003\",\"transaction\":\"12391|11|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591772162\",\"franchise\":\"0002\",\"transaction\":\"13192|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591772150\",\"franchise\":\"0002\",\"transaction\":\"13192|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591772138\",\"franchise\":\"0016\",\"transaction\":\"14093|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591772127\",\"franchise\":\"0002\",\"transaction\":\"14088|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591772118\",\"franchise\":\"0002\",\"transaction\":\"13868|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591772013\",\"franchise\":\"0008\",\"transaction\":\"11225|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591770976\",\"franchise\":\"0002\",\"transaction\":\"13192|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591770672\",\"franchise\":\"0012\",\"transaction\":\"13192|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591767122\",\"franchise\":\"0004\",\"transaction\":\"11695|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591767109\",\"franchise\":\"0016\",\"transaction\":\"14123|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591767102\",\"franchise\":\"0006\",\"transaction\":\"14123|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591767093\",\"franchise\":\"0016\",\"transaction\":\"14093|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591765665\",\"franchise\":\"0006\",\"transaction\":\"14123|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591764632\",\"franchise\":\"0002\",\"transaction\":\"14088|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591762150\",\"franchise\":\"0001\",\"transaction\":\"14142|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591762150\",\"franchise\":\"0008\",\"transaction\":\"14087|14|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591762150\",\"franchise\":\"0014\",\"transaction\":\"11193|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591760779\",\"franchise\":\"0002\",\"transaction\":\"13868|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591760224\",\"franchise\":\"0008\",\"transaction\":\"14087|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591758063\",\"franchise\":\"0011\",\"transaction\":\"14807|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591757801\",\"franchise\":\"0013\",\"transaction\":\"13416|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591756792\",\"franchise\":\"0015\",\"transaction\":\"14844|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591756785\",\"franchise\":\"0006\",\"transaction\":\"14844|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591755897\",\"franchise\":\"0004\",\"transaction\":\"11695|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591754385\",\"franchise\":\"0006\",\"transaction\":\"14844|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591754375\",\"franchise\":\"0015\",\"transaction\":\"11695|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591754360\",\"franchise\":\"0015\",\"transaction\":\"14844|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591753969\",\"franchise\":\"0015\",\"transaction\":\"14807|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591753933\",\"franchise\":\"0008\",\"transaction\":\"14087|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591753925\",\"franchise\":\"0008\",\"transaction\":\"14087|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591753888\",\"franchise\":\"0015\",\"transaction\":\"14844|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591753857\",\"franchise\":\"0006\",\"transaction\":\"14844|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591753571\",\"franchise\":\"0015\",\"transaction\":\"11695|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591753008\",\"franchise\":\"0016\",\"transaction\":\"8062|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591751358\",\"franchise\":\"0015\",\"transaction\":\"11390|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591750952\",\"franchise\":\"0014\",\"transaction\":\"13639|36|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591749186\",\"franchise\":\"0004\",\"transaction\":\"12317|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591749178\",\"franchise\":\"0004\",\"transaction\":\"12317|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591749173\",\"franchise\":\"0004\",\"transaction\":\"12317|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591749157\",\"franchise\":\"0014\",\"transaction\":\"11193|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591749145\",\"franchise\":\"0014\",\"transaction\":\"13868|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591749137\",\"franchise\":\"0014\",\"transaction\":\"13868|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591749025\",\"franchise\":\"0011\",\"transaction\":\"14807|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591748950\",\"franchise\":\"0002\",\"transaction\":\"14112|33|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591747279\",\"franchise\":\"0003\",\"transaction\":\"11390|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591747215\",\"franchise\":\"0010\",\"transaction\":\"11390|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591747172\",\"franchise\":\"0010\",\"transaction\":\"11390|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591740148\",\"franchise\":\"0004\",\"transaction\":\"12317|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591739513\",\"franchise\":\"0001\",\"transaction\":\"12317|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591739513\",\"franchise\":\"0007\",\"transaction\":\"14808|29|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591739053\",\"franchise\":\"0001\",\"transaction\":\"14798|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591739001\",\"franchise\":\"0007\",\"transaction\":\"14798|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591734277\",\"franchise\":\"0003\",\"transaction\":\"12391|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591732706\",\"franchise\":\"0006\",\"transaction\":\"14837|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591732648\",\"franchise\":\"0006\",\"transaction\":\"14844|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591728142\",\"franchise\":\"0008\",\"transaction\":\"11225|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591720143\",\"franchise\":\"0001\",\"transaction\":\"14085|24|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591720143\",\"franchise\":\"0001\",\"transaction\":\"11250|6|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591719573\",\"franchise\":\"0016\",\"transaction\":\"13631|25|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591718946\",\"franchise\":\"0008\",\"transaction\":\"14844|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718946\",\"franchise\":\"0008\",\"transaction\":\"14837|37|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718946\",\"franchise\":\"0002\",\"transaction\":\"14112|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718918\",\"franchise\":\"0014\",\"transaction\":\"13868|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718918\",\"franchise\":\"0014\",\"transaction\":\"11193|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718811\",\"franchise\":\"0008\",\"transaction\":\"14087|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718784\",\"franchise\":\"0015\",\"transaction\":\"7393|6|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591718576\",\"franchise\":\"0007\",\"transaction\":\"14798|37|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718566\",\"franchise\":\"0007\",\"transaction\":\"14798|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718550\",\"franchise\":\"0007\",\"transaction\":\"14798|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718497\",\"franchise\":\"0007\",\"transaction\":\"14798|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591718497\",\"franchise\":\"0001\",\"transaction\":\"14142|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591716236\",\"franchise\":\"0010\",\"transaction\":\"11390|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591715918\",\"franchise\":\"0010\",\"transaction\":\"11390|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591715887\",\"franchise\":\"0010\",\"transaction\":\"14087|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591715873\",\"franchise\":\"0015\",\"transaction\":\"14087|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591715728\",\"franchise\":\"0006\",\"transaction\":\"8062|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591714515\",\"franchise\":\"0013\",\"transaction\":\"13416|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591714452\",\"franchise\":\"0005\",\"transaction\":\"8062|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591712167\",\"franchise\":\"0006\",\"transaction\":\"11783|22|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591711328\",\"franchise\":\"0011\",\"transaction\":\"13868|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591711203\",\"franchise\":\"0004\",\"transaction\":\"12391|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591711194\",\"franchise\":\"0003\",\"transaction\":\"12391|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591711185\",\"franchise\":\"0003\",\"transaction\":\"12391|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591711095\",\"franchise\":\"0008\",\"transaction\":\"13157|35|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591710661\",\"franchise\":\"0006\",\"transaction\":\"14837|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591708873\",\"franchise\":\"0015\",\"transaction\":\"14844|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591708847\",\"franchise\":\"0015\",\"transaction\":\"14844|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591708675\",\"franchise\":\"0015\",\"transaction\":\"14807|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591708657\",\"franchise\":\"0015\",\"transaction\":\"14844|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591707601\",\"franchise\":\"0003\",\"transaction\":\"14142|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591707459\",\"franchise\":\"0014\",\"transaction\":\"14844|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591707434\",\"franchise\":\"0014\",\"transaction\":\"13639|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591707193\",\"franchise\":\"0009\",\"transaction\":\"14807|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591707092\",\"franchise\":\"0011\",\"transaction\":\"13868|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591706711\",\"franchise\":\"0015\",\"transaction\":\"14807|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591706675\",\"franchise\":\"0015\",\"transaction\":\"14087|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591706663\",\"franchise\":\"0015\",\"transaction\":\"11193|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591706590\",\"franchise\":\"0003\",\"transaction\":\"14087|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591705995\",\"franchise\":\"0004\",\"transaction\":\"14807|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591705824\",\"franchise\":\"0009\",\"transaction\":\"14807|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591705138\",\"franchise\":\"0002\",\"transaction\":\"14087|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591705092\",\"franchise\":\"0002\",\"transaction\":\"14112|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591705039\",\"franchise\":\"0003\",\"transaction\":\"12391|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591704793\",\"franchise\":\"0004\",\"transaction\":\"11193|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591704486\",\"franchise\":\"0004\",\"transaction\":\"12391|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591704308\",\"franchise\":\"0016\",\"transaction\":\"13631|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591704295\",\"franchise\":\"0016\",\"transaction\":\"13631|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591704056\",\"franchise\":\"0003\",\"transaction\":\"14142|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591696263\",\"franchise\":\"0007\",\"transaction\":\"14808|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591696263\",\"franchise\":\"0007\",\"transaction\":\"14798|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591688594\",\"franchise\":\"0003\",\"transaction\":\"11516|9|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591687821\",\"franchise\":\"0007\",\"transaction\":\"14805|39|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591683231\",\"franchise\":\"0005\",\"transaction\":\"12140|14|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591677114\",\"franchise\":\"0012\",\"transaction\":\"11193|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591677112\",\"franchise\":\"0001\",\"transaction\":\"14798|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591676744\",\"franchise\":\"0001\",\"transaction\":\"14798|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591676744\",\"franchise\":\"0001\",\"transaction\":\"14085|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591676744\",\"franchise\":\"0001\",\"transaction\":\"11250|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591676537\",\"franchise\":\"0002\",\"transaction\":\"14798|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591675884\",\"franchise\":\"0016\",\"transaction\":\"13631|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591675825\",\"franchise\":\"0006\",\"transaction\":\"13631|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591675776\",\"franchise\":\"0002\",\"transaction\":\"14798|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591675536\",\"franchise\":\"0015\",\"transaction\":\"7393|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591673872\",\"franchise\":\"0002\",\"transaction\":\"14798|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591673817\",\"franchise\":\"0015\",\"transaction\":\"14798|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591672381\",\"franchise\":\"0010\",\"transaction\":\"7393|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591672363\",\"franchise\":\"0015\",\"transaction\":\"14798|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591671788\",\"franchise\":\"0015\",\"transaction\":\"14808|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591671616\",\"franchise\":\"0015\",\"transaction\":\"14798|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591668955\",\"franchise\":\"0006\",\"transaction\":\"13639|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591668946\",\"franchise\":\"0008\",\"transaction\":\"14112|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591668921\",\"franchise\":\"0008\",\"transaction\":\"13157|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591668909\",\"franchise\":\"0014\",\"transaction\":\"13639|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591668877\",\"franchise\":\"0006\",\"transaction\":\"11783|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591668721\",\"franchise\":\"0015\",\"transaction\":\"11783|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591668360\",\"franchise\":\"0015\",\"transaction\":\"11783|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591667804\",\"franchise\":\"0009\",\"transaction\":\"10413|11|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591667703\",\"franchise\":\"0008\",\"transaction\":\"14837|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591667703\",\"franchise\":\"0008\",\"transaction\":\"14112|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591667703\",\"franchise\":\"0008\",\"transaction\":\"13157|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591666101\",\"franchise\":\"0014\",\"transaction\":\"13639|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591666080\",\"franchise\":\"0006\",\"transaction\":\"14837|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591666063\",\"franchise\":\"0014\",\"transaction\":\"13639|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591666052\",\"franchise\":\"0014\",\"transaction\":\"13639|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591665742\",\"franchise\":\"0011\",\"transaction\":\"14837|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591662300\",\"franchise\":\"0002\",\"transaction\":\"14085|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591662289\",\"franchise\":\"0002\",\"transaction\":\"13157|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591662278\",\"franchise\":\"0008\",\"transaction\":\"13157|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591662124\",\"franchise\":\"0004\",\"transaction\":\"13988|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591656763\",\"franchise\":\"0014\",\"transaction\":\"13639|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591656032\",\"franchise\":\"0006\",\"transaction\":\"14837|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591656018\",\"franchise\":\"0006\",\"transaction\":\"13639|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591653444\",\"franchise\":\"0008\",\"transaction\":\"14837|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591653444\",\"franchise\":\"0008\",\"transaction\":\"13157|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591653402\",\"franchise\":\"0007\",\"transaction\":\"12157|12|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591645571\",\"franchise\":\"0006\",\"transaction\":\"13157|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645504\",\"franchise\":\"0002\",\"transaction\":\"13157|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645484\",\"franchise\":\"0002\",\"transaction\":\"13157|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645466\",\"franchise\":\"0006\",\"transaction\":\"14085|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645390\",\"franchise\":\"0002\",\"transaction\":\"14085|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645377\",\"franchise\":\"0006\",\"transaction\":\"14085|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645377\",\"franchise\":\"0002\",\"transaction\":\"13157|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645313\",\"franchise\":\"0006\",\"transaction\":\"14837|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645307\",\"franchise\":\"0011\",\"transaction\":\"14837|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645250\",\"franchise\":\"0006\",\"transaction\":\"13157|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645227\",\"franchise\":\"0003\",\"transaction\":\"11516|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645127\",\"franchise\":\"0011\",\"transaction\":\"14837|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645092\",\"franchise\":\"0008\",\"transaction\":\"13157|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591645072\",\"franchise\":\"0011\",\"transaction\":\"14837|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644980\",\"franchise\":\"0008\",\"transaction\":\"13157|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644935\",\"franchise\":\"0006\",\"transaction\":\"14085|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644774\",\"franchise\":\"0016\",\"transaction\":\"14112|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644765\",\"franchise\":\"0007\",\"transaction\":\"14808|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644765\",\"franchise\":\"0007\",\"transaction\":\"14112|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644304\",\"franchise\":\"0007\",\"transaction\":\"11250|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644289\",\"franchise\":\"0011\",\"transaction\":\"14837|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644281\",\"franchise\":\"0011\",\"transaction\":\"14837|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644260\",\"franchise\":\"0001\",\"transaction\":\"14085|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644248\",\"franchise\":\"0005\",\"transaction\":\"12140|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644232\",\"franchise\":\"0007\",\"transaction\":\"14112|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644217\",\"franchise\":\"0008\",\"transaction\":\"13157|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644209\",\"franchise\":\"0008\",\"transaction\":\"13157|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644203\",\"franchise\":\"0008\",\"transaction\":\"14112|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644198\",\"franchise\":\"0007\",\"transaction\":\"14808|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644189\",\"franchise\":\"0008\",\"transaction\":\"14112|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591644186\",\"franchise\":\"0007\",\"transaction\":\"14805|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591643423\",\"franchise\":\"0008\",\"transaction\":\"14808|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591643410\",\"franchise\":\"0014\",\"transaction\":\"13639|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591643399\",\"franchise\":\"0014\",\"transaction\":\"13639|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591643364\",\"franchise\":\"0015\",\"transaction\":\"11783|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591643354\",\"franchise\":\"0014\",\"transaction\":\"13639|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591643339\",\"franchise\":\"0015\",\"transaction\":\"11516|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591642369\",\"franchise\":\"0003\",\"transaction\":\"11516|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591642333\",\"franchise\":\"0005\",\"transaction\":\"11516|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591642321\",\"franchise\":\"0005\",\"transaction\":\"11516|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591642313\",\"franchise\":\"0005\",\"transaction\":\"11516|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591639740\",\"franchise\":\"0005\",\"transaction\":\"12140|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591639485\",\"franchise\":\"0008\",\"transaction\":\"14112|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591639434\",\"franchise\":\"0005\",\"transaction\":\"11516|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591637978\",\"franchise\":\"0001\",\"transaction\":\"14085|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591637221\",\"franchise\":\"0001\",\"transaction\":\"14085|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591634464\",\"franchise\":\"0009\",\"transaction\":\"10413|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591633737\",\"franchise\":\"0012\",\"transaction\":\"12257|3|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591633532\",\"franchise\":\"0012\",\"transaction\":\"13424|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591633439\",\"franchise\":\"0001\",\"transaction\":\"14085|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591631437\",\"franchise\":\"0008\",\"transaction\":\"14805|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591631428\",\"franchise\":\"0007\",\"transaction\":\"14805|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591631239\",\"franchise\":\"0001\",\"transaction\":\"14085|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591631105\",\"franchise\":\"0001\",\"transaction\":\"11250|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591630936\",\"franchise\":\"0008\",\"transaction\":\"14808|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591630936\",\"franchise\":\"0008\",\"transaction\":\"14112|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591629940\",\"franchise\":\"0007\",\"transaction\":\"14112|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591629918\",\"franchise\":\"0009\",\"transaction\":\"10413|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591629904\",\"franchise\":\"0007\",\"transaction\":\"14808|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591629883\",\"franchise\":\"0007\",\"transaction\":\"12140|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591629883\",\"franchise\":\"0007\",\"transaction\":\"11783|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591627263\",\"franchise\":\"0012\",\"transaction\":\"11250|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591626491\",\"franchise\":\"0016\",\"transaction\":\"14112|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591625856\",\"franchise\":\"0003\",\"transaction\":\"11250|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591625130\",\"franchise\":\"0008\",\"transaction\":\"13157|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591625101\",\"franchise\":\"0008\",\"transaction\":\"13157|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591625088\",\"franchise\":\"0008\",\"transaction\":\"13157|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591625081\",\"franchise\":\"0008\",\"transaction\":\"13157|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591625074\",\"franchise\":\"0008\",\"transaction\":\"13157|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591625066\",\"franchise\":\"0008\",\"transaction\":\"13157|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591624952\",\"franchise\":\"0013\",\"transaction\":\"11250|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591624605\",\"franchise\":\"0016\",\"transaction\":\"14112|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591624598\",\"franchise\":\"0009\",\"transaction\":\"14112|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591624561\",\"franchise\":\"0009\",\"transaction\":\"10413|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591624546\",\"franchise\":\"0009\",\"transaction\":\"14112|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591624546\",\"franchise\":\"0010\",\"transaction\":\"12930|25|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591623911\",\"franchise\":\"0014\",\"transaction\":\"13639|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591623784\",\"franchise\":\"0001\",\"transaction\":\"13613|9|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591623784\",\"franchise\":\"0001\",\"transaction\":\"11705|13|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591623423\",\"franchise\":\"0006\",\"transaction\":\"14063|21|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591622447\",\"franchise\":\"0011\",\"transaction\":\"14837|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591622434\",\"franchise\":\"0011\",\"transaction\":\"10413|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591621669\",\"franchise\":\"0008\",\"transaction\":\"13620|12|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591621669\",\"franchise\":\"0008\",\"transaction\":\"13193|40|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591621449\",\"franchise\":\"0004\",\"transaction\":\"14779|32|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591621301\",\"franchise\":\"0016\",\"transaction\":\"13639|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591621288\",\"franchise\":\"0016\",\"transaction\":\"14808|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591621280\",\"franchise\":\"0015\",\"transaction\":\"14808|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591621092\",\"franchise\":\"0004\",\"transaction\":\"13639|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591621066\",\"franchise\":\"0015\",\"transaction\":\"14808|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591620758\",\"franchise\":\"0007\",\"transaction\":\"14805|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591620723\",\"franchise\":\"0015\",\"transaction\":\"14808|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591620693\",\"franchise\":\"0007\",\"transaction\":\"14805|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591620666\",\"franchise\":\"0006\",\"transaction\":\"14808|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591619106\",\"franchise\":\"0012\",\"transaction\":\"13424|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591617723\",\"franchise\":\"0004\",\"transaction\":\"13988|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591617262\",\"franchise\":\"0004\",\"transaction\":\"13639|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591617075\",\"franchise\":\"0014\",\"transaction\":\"13639|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591617075\",\"franchise\":\"0008\",\"transaction\":\"13157|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591616795\",\"franchise\":\"0008\",\"transaction\":\"13157|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591616783\",\"franchise\":\"0008\",\"transaction\":\"14837|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591616783\",\"franchise\":\"0014\",\"transaction\":\"13639|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591616629\",\"franchise\":\"0014\",\"transaction\":\"13639|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591614486\",\"franchise\":\"0007\",\"transaction\":\"14805|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591614452\",\"franchise\":\"0007\",\"transaction\":\"14805|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591614444\",\"franchise\":\"0007\",\"transaction\":\"14805|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591614431\",\"franchise\":\"0006\",\"transaction\":\"14837|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591614414\",\"franchise\":\"0003\",\"transaction\":\"14837|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591609918\",\"franchise\":\"0007\",\"transaction\":\"12157|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591609881\",\"franchise\":\"0007\",\"transaction\":\"14805|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591605860\",\"franchise\":\"0007\",\"transaction\":\"13814|16|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591605860\",\"franchise\":\"0014\",\"transaction\":\"13188|37|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591605860\",\"franchise\":\"0014\",\"transaction\":\"12152|29|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591605860\",\"franchise\":\"0004\",\"transaction\":\"11890|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591590339\",\"franchise\":\"0012\",\"transaction\":\"12257|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591590305\",\"franchise\":\"0012\",\"transaction\":\"13424|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591590177\",\"franchise\":\"0003\",\"transaction\":\"12257|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591590025\",\"franchise\":\"0003\",\"transaction\":\"14837|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591590015\",\"franchise\":\"0010\",\"transaction\":\"12157|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591589430\",\"franchise\":\"0015\",\"transaction\":\"12140|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591589417\",\"franchise\":\"0015\",\"transaction\":\"11783|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591589406\",\"franchise\":\"0007\",\"transaction\":\"11783|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591589390\",\"franchise\":\"0003\",\"transaction\":\"14837|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591588856\",\"franchise\":\"0003\",\"transaction\":\"14837|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591588839\",\"franchise\":\"0003\",\"transaction\":\"12257|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591588311\",\"franchise\":\"0016\",\"transaction\":\"14837|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591584856\",\"franchise\":\"0008\",\"transaction\":\"14843|16|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591584856\",\"franchise\":\"0008\",\"transaction\":\"13234|24|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591584856\",\"franchise\":\"0008\",\"transaction\":\"10312|19|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591581329\",\"franchise\":\"0010\",\"transaction\":\"12157|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591581314\",\"franchise\":\"0008\",\"transaction\":\"13620|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591581302\",\"franchise\":\"0010\",\"transaction\":\"12930|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591581269\",\"franchise\":\"0008\",\"transaction\":\"14843|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591581269\",\"franchise\":\"0008\",\"transaction\":\"13620|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591580502\",\"franchise\":\"0001\",\"transaction\":\"13613|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591580502\",\"franchise\":\"0001\",\"transaction\":\"12930|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591580502\",\"franchise\":\"0001\",\"transaction\":\"11705|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591580258\",\"franchise\":\"0008\",\"transaction\":\"13193|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591580122\",\"franchise\":\"0006\",\"transaction\":\"14063|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591580113\",\"franchise\":\"0001\",\"transaction\":\"14063|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591580080\",\"franchise\":\"0008\",\"transaction\":\"13193|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578925\",\"franchise\":\"0004\",\"transaction\":\"10297|1|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591578439\",\"franchise\":\"0008\",\"transaction\":\"13620|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578439\",\"franchise\":\"0008\",\"transaction\":\"13193|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578439\",\"franchise\":\"0008\",\"transaction\":\"12930|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578427\",\"franchise\":\"0002\",\"transaction\":\"12930|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578248\",\"franchise\":\"0004\",\"transaction\":\"14779|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578225\",\"franchise\":\"0006\",\"transaction\":\"14779|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578181\",\"franchise\":\"0004\",\"transaction\":\"14779|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591578058\",\"franchise\":\"0004\",\"transaction\":\"14779|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591577121\",\"franchise\":\"0003\",\"transaction\":\"12930|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591576212\",\"franchise\":\"0012\",\"transaction\":\"13620|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591576002\",\"franchise\":\"0016\",\"transaction\":\"13193|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575988\",\"franchise\":\"0008\",\"transaction\":\"12930|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575980\",\"franchise\":\"0009\",\"transaction\":\"13613|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575969\",\"franchise\":\"0008\",\"transaction\":\"11705|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575958\",\"franchise\":\"0008\",\"transaction\":\"12930|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575956\",\"franchise\":\"0007\",\"transaction\":\"12157|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575949\",\"franchise\":\"0010\",\"transaction\":\"13620|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575947\",\"franchise\":\"0008\",\"transaction\":\"13193|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575924\",\"franchise\":\"0008\",\"transaction\":\"13193|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575917\",\"franchise\":\"0008\",\"transaction\":\"13193|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591575847\",\"franchise\":\"0008\",\"transaction\":\"13193|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591575818\",\"franchise\":\"0008\",\"transaction\":\"12930|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591573206\",\"franchise\":\"0009\",\"transaction\":\"13613|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591573188\",\"franchise\":\"0001\",\"transaction\":\"13613|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591570083\",\"franchise\":\"0002\",\"transaction\":\"12140|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591568340\",\"franchise\":\"0008\",\"transaction\":\"11705|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591562248\",\"franchise\":\"0004\",\"transaction\":\"11890|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591561765\",\"franchise\":\"0001\",\"transaction\":\"14063|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591561709\",\"franchise\":\"0001\",\"transaction\":\"11705|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591560735\",\"franchise\":\"0007\",\"transaction\":\"13814|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591560735\",\"franchise\":\"0007\",\"transaction\":\"12157|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591560735\",\"franchise\":\"0015\",\"transaction\":\"12140|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591560735\",\"franchise\":\"0007\",\"transaction\":\"11783|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591560001\",\"franchise\":\"0006\",\"transaction\":\"14779|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591559994\",\"franchise\":\"0009\",\"transaction\":\"14779|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591559979\",\"franchise\":\"0010\",\"transaction\":\"13620|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591559631\",\"franchise\":\"0010\",\"transaction\":\"13620|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591557873\",\"franchise\":\"0014\",\"transaction\":\"13188|37|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591557873\",\"franchise\":\"0014\",\"transaction\":\"12152|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591557873\",\"franchise\":\"0015\",\"transaction\":\"12140|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591557873\",\"franchise\":\"0014\",\"transaction\":\"11705|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591557174\",\"franchise\":\"0001\",\"transaction\":\"13613|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591557165\",\"franchise\":\"0001\",\"transaction\":\"11705|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591554776\",\"franchise\":\"0003\",\"transaction\":\"12157|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591553172\",\"franchise\":\"0015\",\"transaction\":\"12140|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591550693\",\"franchise\":\"0012\",\"transaction\":\"12157|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591550684\",\"franchise\":\"0009\",\"transaction\":\"13613|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591550123\",\"franchise\":\"0008\",\"transaction\":\"13234|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591549270\",\"franchise\":\"0008\",\"transaction\":\"14843|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591549270\",\"franchise\":\"0009\",\"transaction\":\"14779|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591549270\",\"franchise\":\"0007\",\"transaction\":\"14063|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591549270\",\"franchise\":\"0008\",\"transaction\":\"13814|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591549270\",\"franchise\":\"0008\",\"transaction\":\"13234|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591549270\",\"franchise\":\"0007\",\"transaction\":\"12152|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591549270\",\"franchise\":\"0008\",\"transaction\":\"10312|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591548486\",\"franchise\":\"0008\",\"transaction\":\"13188|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591548467\",\"franchise\":\"0014\",\"transaction\":\"13188|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591548467\",\"franchise\":\"0008\",\"transaction\":\"12152|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591547954\",\"franchise\":\"0009\",\"transaction\":\"14779|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591547943\",\"franchise\":\"0008\",\"transaction\":\"13814|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591547943\",\"franchise\":\"0014\",\"transaction\":\"13188|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591547943\",\"franchise\":\"0014\",\"transaction\":\"12152|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591547943\",\"franchise\":\"0008\",\"transaction\":\"10312|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591547942\",\"franchise\":\"0002\",\"transaction\":\"12157|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591543584\",\"franchise\":\"0008\",\"transaction\":\"13188|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591543574\",\"franchise\":\"0014\",\"transaction\":\"13188|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591543564\",\"franchise\":\"0014\",\"transaction\":\"13188|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541502\",\"franchise\":\"0008\",\"transaction\":\"10312|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541492\",\"franchise\":\"0008\",\"transaction\":\"14843|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541492\",\"franchise\":\"0008\",\"transaction\":\"13814|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541492\",\"franchise\":\"0008\",\"transaction\":\"13234|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541492\",\"franchise\":\"0008\",\"transaction\":\"12152|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541492\",\"franchise\":\"0014\",\"transaction\":\"10312|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541230\",\"franchise\":\"0014\",\"transaction\":\"13234|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541230\",\"franchise\":\"0014\",\"transaction\":\"12152|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541195\",\"franchise\":\"0014\",\"transaction\":\"13814|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541195\",\"franchise\":\"0005\",\"transaction\":\"13234|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591541195\",\"franchise\":\"0014\",\"transaction\":\"13188|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591539928\",\"franchise\":\"0003\",\"transaction\":\"13814|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591539072\",\"franchise\":\"0007\",\"transaction\":\"14843|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591539055\",\"franchise\":\"0007\",\"transaction\":\"14843|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591539041\",\"franchise\":\"0015\",\"transaction\":\"11783|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591539029\",\"franchise\":\"0014\",\"transaction\":\"11783|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591539014\",\"franchise\":\"0014\",\"transaction\":\"11783|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591539003\",\"franchise\":\"0014\",\"transaction\":\"11783|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591538385\",\"franchise\":\"0005\",\"transaction\":\"13814|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591538374\",\"franchise\":\"0005\",\"transaction\":\"13234|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591538354\",\"franchise\":\"0005\",\"transaction\":\"13188|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591538346\",\"franchise\":\"0006\",\"transaction\":\"13188|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591537855\",\"franchise\":\"0009\",\"transaction\":\"13613|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591537769\",\"franchise\":\"0009\",\"transaction\":\"14779|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591537753\",\"franchise\":\"0006\",\"transaction\":\"14779|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591537289\",\"franchise\":\"0014\",\"transaction\":\"11783|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591536670\",\"franchise\":\"0007\",\"transaction\":\"14843|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591536670\",\"franchise\":\"0004\",\"transaction\":\"13234|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591535459\",\"franchise\":\"0004\",\"transaction\":\"10297|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591535430\",\"franchise\":\"0004\",\"transaction\":\"13234|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591535430\",\"franchise\":\"0007\",\"transaction\":\"12152|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591535416\",\"franchise\":\"0007\",\"transaction\":\"12152|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591535407\",\"franchise\":\"0007\",\"transaction\":\"14843|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591535393\",\"franchise\":\"0006\",\"transaction\":\"13188|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591535364\",\"franchise\":\"0011\",\"transaction\":\"13234|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591534292\",\"franchise\":\"0001\",\"transaction\":\"12184|22|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591532710\",\"franchise\":\"0014\",\"transaction\":\"11783|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591532694\",\"franchise\":\"0007\",\"transaction\":\"14843|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591532679\",\"franchise\":\"0007\",\"transaction\":\"12152|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591532489\",\"franchise\":\"0007\",\"transaction\":\"8687|12|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591532489\",\"franchise\":\"0007\",\"transaction\":\"14936|7|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591532489\",\"franchise\":\"0007\",\"transaction\":\"14058|16|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591532489\",\"franchise\":\"0007\",\"transaction\":\"13722|17|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591532489\",\"franchise\":\"0007\",\"transaction\":\"13608|19|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591532489\",\"franchise\":\"0007\",\"transaction\":\"11644|17|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591530411\",\"franchise\":\"0004\",\"transaction\":\"14063|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591530395\",\"franchise\":\"0007\",\"transaction\":\"11644|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591530386\",\"franchise\":\"0007\",\"transaction\":\"14058|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591530378\",\"franchise\":\"0007\",\"transaction\":\"14058|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591526736\",\"franchise\":\"0016\",\"transaction\":\"14843|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591526700\",\"franchise\":\"0014\",\"transaction\":\"11783|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591525410\",\"franchise\":\"0006\",\"transaction\":\"13188|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591525114\",\"franchise\":\"0014\",\"transaction\":\"11783|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591525079\",\"franchise\":\"0006\",\"transaction\":\"14779|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591518377\",\"franchise\":\"0014\",\"transaction\":\"11783|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591518354\",\"franchise\":\"0014\",\"transaction\":\"10312|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591512281\",\"franchise\":\"0014\",\"transaction\":\"14063|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591512147\",\"franchise\":\"0009\",\"transaction\":\"14867|14|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591511728\",\"franchise\":\"0001\",\"transaction\":\"14779|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591511728\",\"franchise\":\"0007\",\"transaction\":\"13722|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591511728\",\"franchise\":\"0001\",\"transaction\":\"10312|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591511640\",\"franchise\":\"0004\",\"transaction\":\"9662|14|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591511640\",\"franchise\":\"0002\",\"transaction\":\"14838|40|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591511640\",\"franchise\":\"0015\",\"transaction\":\"14141|55|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591511640\",\"franchise\":\"0004\",\"transaction\":\"12912|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591508639\",\"franchise\":\"0012\",\"transaction\":\"14779|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591502857\",\"franchise\":\"0012\",\"transaction\":\"10312|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591502744\",\"franchise\":\"0012\",\"transaction\":\"14779|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591502423\",\"franchise\":\"0003\",\"transaction\":\"14779|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591501314\",\"franchise\":\"0016\",\"transaction\":\"14126|22|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591500454\",\"franchise\":\"0014\",\"transaction\":\"14063|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591500443\",\"franchise\":\"0014\",\"transaction\":\"14063|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591493443\",\"franchise\":\"0015\",\"transaction\":\"7401|20|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591493017\",\"franchise\":\"0014\",\"transaction\":\"14063|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490796\",\"franchise\":\"0009\",\"transaction\":\"14867|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490746\",\"franchise\":\"0007\",\"transaction\":\"13722|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490734\",\"franchise\":\"0007\",\"transaction\":\"8687|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490305\",\"franchise\":\"0015\",\"transaction\":\"7401|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490305\",\"franchise\":\"0001\",\"transaction\":\"14063|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490206\",\"franchise\":\"0015\",\"transaction\":\"7401|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490045\",\"franchise\":\"0016\",\"transaction\":\"14126|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591490045\",\"franchise\":\"0001\",\"transaction\":\"12184|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591489993\",\"franchise\":\"0001\",\"transaction\":\"14063|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591488222\",\"franchise\":\"0007\",\"transaction\":\"14936|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488203\",\"franchise\":\"0007\",\"transaction\":\"13722|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488149\",\"franchise\":\"0007\",\"transaction\":\"11644|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488126\",\"franchise\":\"0007\",\"transaction\":\"14058|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488113\",\"franchise\":\"0007\",\"transaction\":\"13608|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488106\",\"franchise\":\"0016\",\"transaction\":\"13608|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488097\",\"franchise\":\"0016\",\"transaction\":\"13608|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488084\",\"franchise\":\"0007\",\"transaction\":\"8687|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488073\",\"franchise\":\"0008\",\"transaction\":\"8687|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591488050\",\"franchise\":\"0015\",\"transaction\":\"14141|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591486746\",\"franchise\":\"0014\",\"transaction\":\"14835|49|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591482228\",\"franchise\":\"0010\",\"transaction\":\"12184|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477531\",\"franchise\":\"0016\",\"transaction\":\"14126|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477514\",\"franchise\":\"0016\",\"transaction\":\"14126|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477384\",\"franchise\":\"0009\",\"transaction\":\"14867|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477376\",\"franchise\":\"0009\",\"transaction\":\"14867|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477351\",\"franchise\":\"0006\",\"transaction\":\"14058|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477336\",\"franchise\":\"0016\",\"transaction\":\"14126|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477328\",\"franchise\":\"0016\",\"transaction\":\"14126|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591477202\",\"franchise\":\"0001\",\"transaction\":\"7394|16|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591474104\",\"franchise\":\"0008\",\"transaction\":\"13722|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591469672\",\"franchise\":\"0014\",\"transaction\":\"14835|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591468891\",\"franchise\":\"0009\",\"transaction\":\"14867|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591468129\",\"franchise\":\"0004\",\"transaction\":\"14867|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591468062\",\"franchise\":\"0006\",\"transaction\":\"14867|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467764\",\"franchise\":\"0008\",\"transaction\":\"8687|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467355\",\"franchise\":\"0012\",\"transaction\":\"14867|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591467323\",\"franchise\":\"0015\",\"transaction\":\"14936|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467323\",\"franchise\":\"0015\",\"transaction\":\"14058|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467289\",\"franchise\":\"0015\",\"transaction\":\"14141|53|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467225\",\"franchise\":\"0004\",\"transaction\":\"11644|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467157\",\"franchise\":\"0008\",\"transaction\":\"13722|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467076\",\"franchise\":\"0004\",\"transaction\":\"11644|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591467067\",\"franchise\":\"0001\",\"transaction\":\"7394|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591467050\",\"franchise\":\"0001\",\"transaction\":\"7394|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591466907\",\"franchise\":\"0004\",\"transaction\":\"9662|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591466907\",\"franchise\":\"0001\",\"transaction\":\"7394|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591466907\",\"franchise\":\"0004\",\"transaction\":\"12912|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591466823\",\"franchise\":\"0010\",\"transaction\":\"14936|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591466247\",\"franchise\":\"0002\",\"transaction\":\"14838|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591465356\",\"franchise\":\"0007\",\"transaction\":\"14058|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591464909\",\"franchise\":\"0008\",\"transaction\":\"8687|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591464909\",\"franchise\":\"0008\",\"transaction\":\"13722|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591461722\",\"franchise\":\"0007\",\"transaction\":\"14058|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591461701\",\"franchise\":\"0007\",\"transaction\":\"14058|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457706\",\"franchise\":\"0016\",\"transaction\":\"14126|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457672\",\"franchise\":\"0006\",\"transaction\":\"14126|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457672\",\"franchise\":\"0003\",\"transaction\":\"13722|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457672\",\"franchise\":\"0014\",\"transaction\":\"12184|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457480\",\"franchise\":\"0010\",\"transaction\":\"9662|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457382\",\"franchise\":\"0003\",\"transaction\":\"8687|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457371\",\"franchise\":\"0003\",\"transaction\":\"13722|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457325\",\"franchise\":\"0007\",\"transaction\":\"14058|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591457270\",\"franchise\":\"0007\",\"transaction\":\"14141|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457249\",\"franchise\":\"0015\",\"transaction\":\"7401|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457249\",\"franchise\":\"0006\",\"transaction\":\"14126|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591457050\",\"franchise\":\"0001\",\"transaction\":\"14057|35|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591457050\",\"franchise\":\"0001\",\"transaction\":\"11760|32|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591455802\",\"franchise\":\"0006\",\"transaction\":\"14126|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591455478\",\"franchise\":\"0001\",\"transaction\":\"7394|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591455460\",\"franchise\":\"0015\",\"transaction\":\"7401|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591455453\",\"franchise\":\"0015\",\"transaction\":\"7401|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591455425\",\"franchise\":\"0014\",\"transaction\":\"8687|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591455377\",\"franchise\":\"0015\",\"transaction\":\"13722|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591455367\",\"franchise\":\"0015\",\"transaction\":\"13722|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591455301\",\"franchise\":\"0001\",\"transaction\":\"7394|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591455292\",\"franchise\":\"0001\",\"transaction\":\"7394|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591452712\",\"franchise\":\"0015\",\"transaction\":\"13722|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591450664\",\"franchise\":\"0016\",\"transaction\":\"12184|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591450655\",\"franchise\":\"0011\",\"transaction\":\"12184|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591450522\",\"franchise\":\"0011\",\"transaction\":\"12184|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591450092\",\"franchise\":\"0015\",\"transaction\":\"14141|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591450076\",\"franchise\":\"0015\",\"transaction\":\"13722|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591449979\",\"franchise\":\"0016\",\"transaction\":\"12184|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591449941\",\"franchise\":\"0015\",\"transaction\":\"7401|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448910\",\"franchise\":\"0016\",\"transaction\":\"13608|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448830\",\"franchise\":\"0002\",\"transaction\":\"13608|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448819\",\"franchise\":\"0002\",\"transaction\":\"13608|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448799\",\"franchise\":\"0002\",\"transaction\":\"13608|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448793\",\"franchise\":\"0002\",\"transaction\":\"13608|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448788\",\"franchise\":\"0002\",\"transaction\":\"13608|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448654\",\"franchise\":\"0016\",\"transaction\":\"12184|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448647\",\"franchise\":\"0008\",\"transaction\":\"12184|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591448640\",\"franchise\":\"0008\",\"transaction\":\"12184|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447649\",\"franchise\":\"0008\",\"transaction\":\"14838|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447649\",\"franchise\":\"0008\",\"transaction\":\"14141|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447624\",\"franchise\":\"0002\",\"transaction\":\"14838|37|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447624\",\"franchise\":\"0015\",\"transaction\":\"14141|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447608\",\"franchise\":\"0002\",\"transaction\":\"14838|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447531\",\"franchise\":\"0005\",\"transaction\":\"12912|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591447487\",\"franchise\":\"0008\",\"transaction\":\"12184|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591447475\",\"franchise\":\"0002\",\"transaction\":\"14838|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447463\",\"franchise\":\"0002\",\"transaction\":\"14838|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447420\",\"franchise\":\"0002\",\"transaction\":\"14838|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591447410\",\"franchise\":\"0002\",\"transaction\":\"14838|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591446861\",\"franchise\":\"0002\",\"transaction\":\"14838|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591446672\",\"franchise\":\"0002\",\"transaction\":\"14838|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591446628\",\"franchise\":\"0002\",\"transaction\":\"14838|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591446532\",\"franchise\":\"0014\",\"transaction\":\"7401|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591443731\",\"franchise\":\"0014\",\"transaction\":\"14835|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591443717\",\"franchise\":\"0011\",\"transaction\":\"7401|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591443475\",\"franchise\":\"0014\",\"transaction\":\"8687|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591443454\",\"franchise\":\"0014\",\"transaction\":\"14835|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591439781\",\"franchise\":\"0015\",\"transaction\":\"14834|57|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591439781\",\"franchise\":\"0006\",\"transaction\":\"13614|27|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591439781\",\"franchise\":\"0006\",\"transaction\":\"12386|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591435149\",\"franchise\":\"0007\",\"transaction\":\"14846|43|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591435149\",\"franchise\":\"0007\",\"transaction\":\"11670|11|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591432879\",\"franchise\":\"0001\",\"transaction\":\"7394|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591432863\",\"franchise\":\"0002\",\"transaction\":\"14838|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591432854\",\"franchise\":\"0002\",\"transaction\":\"14838|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591432829\",\"franchise\":\"0008\",\"transaction\":\"13634|5|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591432829\",\"franchise\":\"0016\",\"transaction\":\"10700|36|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591428379\",\"franchise\":\"0010\",\"transaction\":\"9662|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591428379\",\"franchise\":\"0002\",\"transaction\":\"14838|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591428360\",\"franchise\":\"0001\",\"transaction\":\"9662|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591428360\",\"franchise\":\"0002\",\"transaction\":\"14838|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591425113\",\"franchise\":\"0002\",\"transaction\":\"13608|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591425100\",\"franchise\":\"0002\",\"transaction\":\"14838|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591424627\",\"franchise\":\"0009\",\"transaction\":\"7394|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591423682\",\"franchise\":\"0012\",\"transaction\":\"13608|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591418701\",\"franchise\":\"0006\",\"transaction\":\"14835|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591418502\",\"franchise\":\"0010\",\"transaction\":\"14835|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591418379\",\"franchise\":\"0010\",\"transaction\":\"9831|14|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591417335\",\"franchise\":\"0016\",\"transaction\":\"13608|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591417288\",\"franchise\":\"0001\",\"transaction\":\"9662|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591417269\",\"franchise\":\"0016\",\"transaction\":\"13608|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591416889\",\"franchise\":\"0006\",\"transaction\":\"14835|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591416610\",\"franchise\":\"0016\",\"transaction\":\"14835|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591416551\",\"franchise\":\"0006\",\"transaction\":\"14835|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591416535\",\"franchise\":\"0001\",\"transaction\":\"9662|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591416185\",\"franchise\":\"0016\",\"transaction\":\"13608|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591416078\",\"franchise\":\"0016\",\"transaction\":\"14835|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591416024\",\"franchise\":\"0003\",\"transaction\":\"14835|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591415674\",\"franchise\":\"0007\",\"transaction\":\"14846|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591415622\",\"franchise\":\"0001\",\"transaction\":\"9662|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591415272\",\"franchise\":\"0015\",\"transaction\":\"14076|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591414848\",\"franchise\":\"0015\",\"transaction\":\"14141|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591414185\",\"franchise\":\"0009\",\"transaction\":\"8658|8|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591414130\",\"franchise\":\"0009\",\"transaction\":\"14842|49|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591413643\",\"franchise\":\"0001\",\"transaction\":\"14057|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591413643\",\"franchise\":\"0001\",\"transaction\":\"11760|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591413643\",\"franchise\":\"0016\",\"transaction\":\"10700|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591413280\",\"franchise\":\"0010\",\"transaction\":\"9831|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591412554\",\"franchise\":\"0007\",\"transaction\":\"14057|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591412554\",\"franchise\":\"0007\",\"transaction\":\"11760|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591412554\",\"franchise\":\"0016\",\"transaction\":\"10700|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591407681\",\"franchise\":\"0007\",\"transaction\":\"14057|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591407666\",\"franchise\":\"0007\",\"transaction\":\"11760|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591407649\",\"franchise\":\"0004\",\"transaction\":\"14057|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591407625\",\"franchise\":\"0001\",\"transaction\":\"11760|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591404842\",\"franchise\":\"0014\",\"transaction\":\"9474|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591397395\",\"franchise\":\"0004\",\"transaction\":\"14057|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591396383\",\"franchise\":\"0006\",\"transaction\":\"12386|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591395166\",\"franchise\":\"0006\",\"transaction\":\"13614|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591394543\",\"franchise\":\"0007\",\"transaction\":\"14141|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591394487\",\"franchise\":\"0015\",\"transaction\":\"14834|57|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591394453\",\"franchise\":\"0008\",\"transaction\":\"14834|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591392090\",\"franchise\":\"0008\",\"transaction\":\"13614|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591392083\",\"franchise\":\"0008\",\"transaction\":\"13614|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591390671\",\"franchise\":\"0007\",\"transaction\":\"14846|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591390671\",\"franchise\":\"0009\",\"transaction\":\"14842|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591390618\",\"franchise\":\"0002\",\"transaction\":\"14846|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591390618\",\"franchise\":\"0009\",\"transaction\":\"14842|48|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591390618\",\"franchise\":\"0007\",\"transaction\":\"14141|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591390618\",\"franchise\":\"0007\",\"transaction\":\"11670|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591386896\",\"franchise\":\"0008\",\"transaction\":\"14834|53|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591386896\",\"franchise\":\"0008\",\"transaction\":\"13614|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591386874\",\"franchise\":\"0015\",\"transaction\":\"14834|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591386874\",\"franchise\":\"0008\",\"transaction\":\"13634|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591386874\",\"franchise\":\"0006\",\"transaction\":\"13614|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591386843\",\"franchise\":\"0008\",\"transaction\":\"12386|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591385892\",\"franchise\":\"0016\",\"transaction\":\"10700|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591385609\",\"franchise\":\"0014\",\"transaction\":\"9474|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591385609\",\"franchise\":\"0004\",\"transaction\":\"14057|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591385609\",\"franchise\":\"0006\",\"transaction\":\"13614|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591385609\",\"franchise\":\"0001\",\"transaction\":\"11760|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591385609\",\"franchise\":\"0001\",\"transaction\":\"10700|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591381957\",\"franchise\":\"0004\",\"transaction\":\"11670|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591381944\",\"franchise\":\"0002\",\"transaction\":\"14846|37|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591381926\",\"franchise\":\"0010\",\"transaction\":\"9831|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591381909\",\"franchise\":\"0009\",\"transaction\":\"8658|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591381903\",\"franchise\":\"0009\",\"transaction\":\"8658|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591379826\",\"franchise\":\"0010\",\"transaction\":\"9831|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591375191\",\"franchise\":\"0010\",\"transaction\":\"14846|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591375177\",\"franchise\":\"0010\",\"transaction\":\"9831|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591373905\",\"franchise\":\"0005\",\"transaction\":\"11760|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591373897\",\"franchise\":\"0015\",\"transaction\":\"11760|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591372871\",\"franchise\":\"0003\",\"transaction\":\"13672|45|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591372796\",\"franchise\":\"0004\",\"transaction\":\"11670|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591372757\",\"franchise\":\"0004\",\"transaction\":\"14057|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591371970\",\"franchise\":\"0015\",\"transaction\":\"11760|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591371952\",\"franchise\":\"0015\",\"transaction\":\"14076|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591371866\",\"franchise\":\"0015\",\"transaction\":\"14141|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591371830\",\"franchise\":\"0009\",\"transaction\":\"8658|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591371830\",\"franchise\":\"0015\",\"transaction\":\"14834|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591371830\",\"franchise\":\"0007\",\"transaction\":\"14141|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591371280\",\"franchise\":\"0003\",\"transaction\":\"4925|18|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591370931\",\"franchise\":\"0009\",\"transaction\":\"8658|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591370895\",\"franchise\":\"0009\",\"transaction\":\"14842|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591370476\",\"franchise\":\"0014\",\"transaction\":\"14842|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591370476\",\"franchise\":\"0016\",\"transaction\":\"14834|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591370208\",\"franchise\":\"0005\",\"transaction\":\"5848|16|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591368453\",\"franchise\":\"0012\",\"transaction\":\"8658|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591368326\",\"franchise\":\"0002\",\"transaction\":\"8658|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591367427\",\"franchise\":\"0007\",\"transaction\":\"11670|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591367413\",\"franchise\":\"0014\",\"transaction\":\"13634|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591367405\",\"franchise\":\"0005\",\"transaction\":\"11760|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591367399\",\"franchise\":\"0006\",\"transaction\":\"13614|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365925\",\"franchise\":\"0013\",\"transaction\":\"14076|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591365912\",\"franchise\":\"0007\",\"transaction\":\"14141|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365902\",\"franchise\":\"0007\",\"transaction\":\"14141|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365901\",\"franchise\":\"0007\",\"transaction\":\"14842|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365889\",\"franchise\":\"0006\",\"transaction\":\"14057|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365627\",\"franchise\":\"0003\",\"transaction\":\"4925|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365606\",\"franchise\":\"0006\",\"transaction\":\"13614|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365579\",\"franchise\":\"0007\",\"transaction\":\"14141|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591365533\",\"franchise\":\"0003\",\"transaction\":\"13672|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365445\",\"franchise\":\"0007\",\"transaction\":\"14057|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365396\",\"franchise\":\"0003\",\"transaction\":\"13672|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365382\",\"franchise\":\"0003\",\"transaction\":\"13672|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365317\",\"franchise\":\"0007\",\"transaction\":\"14846|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365317\",\"franchise\":\"0007\",\"transaction\":\"14842|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365317\",\"franchise\":\"0003\",\"transaction\":\"13672|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591365317\",\"franchise\":\"0007\",\"transaction\":\"11670|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364619\",\"franchise\":\"0016\",\"transaction\":\"14846|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364612\",\"franchise\":\"0009\",\"transaction\":\"14842|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364603\",\"franchise\":\"0006\",\"transaction\":\"14846|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364594\",\"franchise\":\"0009\",\"transaction\":\"14842|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364587\",\"franchise\":\"0006\",\"transaction\":\"14846|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364534\",\"franchise\":\"0006\",\"transaction\":\"10700|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364241\",\"franchise\":\"0009\",\"transaction\":\"14842|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364161\",\"franchise\":\"0016\",\"transaction\":\"14842|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364134\",\"franchise\":\"0006\",\"transaction\":\"14846|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364096\",\"franchise\":\"0016\",\"transaction\":\"14846|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591364089\",\"franchise\":\"0009\",\"transaction\":\"14842|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591363932\",\"franchise\":\"0016\",\"transaction\":\"14846|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591363749\",\"franchise\":\"0016\",\"transaction\":\"14834|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363660\",\"franchise\":\"0006\",\"transaction\":\"14057|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363660\",\"franchise\":\"0001\",\"transaction\":\"13378|19|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591363495\",\"franchise\":\"0016\",\"transaction\":\"10700|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363475\",\"franchise\":\"0016\",\"transaction\":\"14834|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363135\",\"franchise\":\"0016\",\"transaction\":\"14834|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363113\",\"franchise\":\"0003\",\"transaction\":\"13672|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363101\",\"franchise\":\"0003\",\"transaction\":\"13672|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363074\",\"franchise\":\"0006\",\"transaction\":\"14834|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363066\",\"franchise\":\"0016\",\"transaction\":\"14834|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363058\",\"franchise\":\"0016\",\"transaction\":\"14834|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591363023\",\"franchise\":\"0016\",\"transaction\":\"10700|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591362178\",\"franchise\":\"0016\",\"transaction\":\"10700|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591362168\",\"franchise\":\"0016\",\"transaction\":\"14834|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591361624\",\"franchise\":\"0014\",\"transaction\":\"9474|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591361624\",\"franchise\":\"0014\",\"transaction\":\"13634|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591361624\",\"franchise\":\"0005\",\"transaction\":\"11760|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591361624\",\"franchise\":\"0006\",\"transaction\":\"10700|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591361587\",\"franchise\":\"0005\",\"transaction\":\"11760|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591361565\",\"franchise\":\"0014\",\"transaction\":\"14834|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591360428\",\"franchise\":\"0006\",\"transaction\":\"10700|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591360126\",\"franchise\":\"0005\",\"transaction\":\"11760|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591360088\",\"franchise\":\"0012\",\"transaction\":\"13634|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591360019\",\"franchise\":\"0012\",\"transaction\":\"11670|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591359242\",\"franchise\":\"0001\",\"transaction\":\"13378|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591358675\",\"franchise\":\"0001\",\"transaction\":\"9474|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591358630\",\"franchise\":\"0015\",\"transaction\":\"10700|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591358572\",\"franchise\":\"0015\",\"transaction\":\"11670|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591358157\",\"franchise\":\"0011\",\"transaction\":\"10700|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591357550\",\"franchise\":\"0013\",\"transaction\":\"14840|31|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591356302\",\"franchise\":\"0003\",\"transaction\":\"13672|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591356215\",\"franchise\":\"0003\",\"transaction\":\"13672|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591356201\",\"franchise\":\"0005\",\"transaction\":\"14057|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591354703\",\"franchise\":\"0005\",\"transaction\":\"14057|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591354139\",\"franchise\":\"0006\",\"transaction\":\"14057|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591354024\",\"franchise\":\"0006\",\"transaction\":\"13614|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591352961\",\"franchise\":\"0001\",\"transaction\":\"9474|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591352651\",\"franchise\":\"0016\",\"transaction\":\"13605|40|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591348892\",\"franchise\":\"0003\",\"transaction\":\"13672|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591348879\",\"franchise\":\"0001\",\"transaction\":\"13614|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591347309\",\"franchise\":\"0004\",\"transaction\":\"13614|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591347208\",\"franchise\":\"0014\",\"transaction\":\"10273|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591345452\",\"franchise\":\"0003\",\"transaction\":\"4925|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591345345\",\"franchise\":\"0007\",\"transaction\":\"14113|56|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591345345\",\"franchise\":\"0007\",\"transaction\":\"14105|62|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591345345\",\"franchise\":\"0011\",\"transaction\":\"14067|23|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591345345\",\"franchise\":\"0012\",\"transaction\":\"13674|36|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591345345\",\"franchise\":\"0007\",\"transaction\":\"13154|35|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591345345\",\"franchise\":\"0011\",\"transaction\":\"11640|24|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591342110\",\"franchise\":\"0003\",\"transaction\":\"13672|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591342087\",\"franchise\":\"0003\",\"transaction\":\"13672|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591335740\",\"franchise\":\"0016\",\"transaction\":\"13607|45|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591332934\",\"franchise\":\"0012\",\"transaction\":\"12634|13|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591330838\",\"franchise\":\"0012\",\"transaction\":\"9474|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591330832\",\"franchise\":\"0003\",\"transaction\":\"9474|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591330824\",\"franchise\":\"0003\",\"transaction\":\"9474|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591330695\",\"franchise\":\"0003\",\"transaction\":\"13672|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591329669\",\"franchise\":\"0003\",\"transaction\":\"13672|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591328079\",\"franchise\":\"0003\",\"transaction\":\"4925|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591326792\",\"franchise\":\"0005\",\"transaction\":\"5848|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591326772\",\"franchise\":\"0003\",\"transaction\":\"5848|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591326428\",\"franchise\":\"0003\",\"transaction\":\"9474|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591325374\",\"franchise\":\"0003\",\"transaction\":\"5848|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591324670\",\"franchise\":\"0010\",\"transaction\":\"10722|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591321921\",\"franchise\":\"0007\",\"transaction\":\"13154|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591321619\",\"franchise\":\"0006\",\"transaction\":\"9474|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591321581\",\"franchise\":\"0001\",\"transaction\":\"9474|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591320400\",\"franchise\":\"0001\",\"transaction\":\"9474|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591320387\",\"franchise\":\"0001\",\"transaction\":\"13378|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591316409\",\"franchise\":\"0015\",\"transaction\":\"12678|47|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591314337\",\"franchise\":\"0013\",\"transaction\":\"14840|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591312620\",\"franchise\":\"0014\",\"transaction\":\"9431|43|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591310173\",\"franchise\":\"0016\",\"transaction\":\"13605|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591310161\",\"franchise\":\"0016\",\"transaction\":\"13605|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591308917\",\"franchise\":\"0016\",\"transaction\":\"13605|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591308756\",\"franchise\":\"0007\",\"transaction\":\"9918|20|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591308756\",\"franchise\":\"0007\",\"transaction\":\"14122|47|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591308199\",\"franchise\":\"0015\",\"transaction\":\"13605|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591305003\",\"franchise\":\"0009\",\"transaction\":\"13378|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591303691\",\"franchise\":\"0007\",\"transaction\":\"13154|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591303691\",\"franchise\":\"0014\",\"transaction\":\"10273|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591303669\",\"franchise\":\"0006\",\"transaction\":\"13605|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591303610\",\"franchise\":\"0006\",\"transaction\":\"13605|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591303602\",\"franchise\":\"0010\",\"transaction\":\"13605|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591303516\",\"franchise\":\"0010\",\"transaction\":\"13605|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591301825\",\"franchise\":\"0011\",\"transaction\":\"14067|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591301660\",\"franchise\":\"0011\",\"transaction\":\"11640|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591301620\",\"franchise\":\"0012\",\"transaction\":\"13674|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591300385\",\"franchise\":\"0005\",\"transaction\":\"5848|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591300365\",\"franchise\":\"0005\",\"transaction\":\"5848|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591299205\",\"franchise\":\"0007\",\"transaction\":\"14105|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591299192\",\"franchise\":\"0015\",\"transaction\":\"14105|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591299174\",\"franchise\":\"0007\",\"transaction\":\"14113|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591299174\",\"franchise\":\"0007\",\"transaction\":\"13154|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591299011\",\"franchise\":\"0004\",\"transaction\":\"10273|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591298937\",\"franchise\":\"0005\",\"transaction\":\"5848|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591298559\",\"franchise\":\"0015\",\"transaction\":\"14105|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591298121\",\"franchise\":\"0014\",\"transaction\":\"13674|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591298107\",\"franchise\":\"0012\",\"transaction\":\"4925|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591298001\",\"franchise\":\"0016\",\"transaction\":\"13607|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591297992\",\"franchise\":\"0013\",\"transaction\":\"13154|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591297976\",\"franchise\":\"0009\",\"transaction\":\"14840|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591297953\",\"franchise\":\"0014\",\"transaction\":\"9431|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591297944\",\"franchise\":\"0007\",\"transaction\":\"14122|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591297910\",\"franchise\":\"0003\",\"transaction\":\"11640|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591291501\",\"franchise\":\"0015\",\"transaction\":\"12678|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591291494\",\"franchise\":\"0015\",\"transaction\":\"14105|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591291486\",\"franchise\":\"0015\",\"transaction\":\"14105|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591291479\",\"franchise\":\"0015\",\"transaction\":\"12678|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591291178\",\"franchise\":\"0014\",\"transaction\":\"13674|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591291007\",\"franchise\":\"0016\",\"transaction\":\"13607|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591290994\",\"franchise\":\"0012\",\"transaction\":\"13607|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591290987\",\"franchise\":\"0012\",\"transaction\":\"13607|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289783\",\"franchise\":\"0012\",\"transaction\":\"13607|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289752\",\"franchise\":\"0016\",\"transaction\":\"13607|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289737\",\"franchise\":\"0011\",\"transaction\":\"11640|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289731\",\"franchise\":\"0011\",\"transaction\":\"11640|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289689\",\"franchise\":\"0012\",\"transaction\":\"12634|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289475\",\"franchise\":\"0008\",\"transaction\":\"13378|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289438\",\"franchise\":\"0005\",\"transaction\":\"4925|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289396\",\"franchise\":\"0015\",\"transaction\":\"14105|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289353\",\"franchise\":\"0007\",\"transaction\":\"9918|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289329\",\"franchise\":\"0014\",\"transaction\":\"9431|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289299\",\"franchise\":\"0013\",\"transaction\":\"13154|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289282\",\"franchise\":\"0010\",\"transaction\":\"10722|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289262\",\"franchise\":\"0015\",\"transaction\":\"12678|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591289228\",\"franchise\":\"0012\",\"transaction\":\"13607|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591287768\",\"franchise\":\"0015\",\"transaction\":\"13607|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591287134\",\"franchise\":\"0014\",\"transaction\":\"13607|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591285658\",\"franchise\":\"0014\",\"transaction\":\"13607|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591285324\",\"franchise\":\"0013\",\"transaction\":\"13154|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591285137\",\"franchise\":\"0008\",\"transaction\":\"13607|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591285127\",\"franchise\":\"0008\",\"transaction\":\"14113|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591285127\",\"franchise\":\"0008\",\"transaction\":\"13378|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591283640\",\"franchise\":\"0009\",\"transaction\":\"14840|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591283241\",\"franchise\":\"0010\",\"transaction\":\"14840|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591283241\",\"franchise\":\"0014\",\"transaction\":\"13378|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591281776\",\"franchise\":\"0006\",\"transaction\":\"13378|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591281187\",\"franchise\":\"0010\",\"transaction\":\"14840|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591281187\",\"franchise\":\"0010\",\"transaction\":\"12634|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591281187\",\"franchise\":\"0010\",\"transaction\":\"10722|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591279842\",\"franchise\":\"0011\",\"transaction\":\"11640|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591278676\",\"franchise\":\"0014\",\"transaction\":\"9431|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591278557\",\"franchise\":\"0011\",\"transaction\":\"11640|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591278461\",\"franchise\":\"0011\",\"transaction\":\"13378|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591277040\",\"franchise\":\"0006\",\"transaction\":\"11640|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591276552\",\"franchise\":\"0009\",\"transaction\":\"14840|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591276528\",\"franchise\":\"0009\",\"transaction\":\"14840|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591276521\",\"franchise\":\"0013\",\"transaction\":\"11640|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591276514\",\"franchise\":\"0013\",\"transaction\":\"12634|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591276291\",\"franchise\":\"0009\",\"transaction\":\"14840|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591276030\",\"franchise\":\"0006\",\"transaction\":\"13154|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591276007\",\"franchise\":\"0013\",\"transaction\":\"11640|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591275976\",\"franchise\":\"0013\",\"transaction\":\"12634|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591275088\",\"franchise\":\"0015\",\"transaction\":\"12678|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591274681\",\"franchise\":\"0006\",\"transaction\":\"13154|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591274539\",\"franchise\":\"0015\",\"transaction\":\"14105|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591274346\",\"franchise\":\"0005\",\"transaction\":\"4925|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591274293\",\"franchise\":\"0015\",\"transaction\":\"14105|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591274262\",\"franchise\":\"0015\",\"transaction\":\"14105|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591274221\",\"franchise\":\"0003\",\"transaction\":\"12634|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591274192\",\"franchise\":\"0005\",\"transaction\":\"4925|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273569\",\"franchise\":\"0015\",\"transaction\":\"12678|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273554\",\"franchise\":\"0016\",\"transaction\":\"13674|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273549\",\"franchise\":\"0014\",\"transaction\":\"13674|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273490\",\"franchise\":\"0003\",\"transaction\":\"12634|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273439\",\"franchise\":\"0006\",\"transaction\":\"10722|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273393\",\"franchise\":\"0006\",\"transaction\":\"14067|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273373\",\"franchise\":\"0015\",\"transaction\":\"14105|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273358\",\"franchise\":\"0015\",\"transaction\":\"14105|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273347\",\"franchise\":\"0006\",\"transaction\":\"4925|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273336\",\"franchise\":\"0015\",\"transaction\":\"12678|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273327\",\"franchise\":\"0015\",\"transaction\":\"12678|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591273026\",\"franchise\":\"0015\",\"transaction\":\"12678|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591272994\",\"franchise\":\"0015\",\"transaction\":\"14113|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591272976\",\"franchise\":\"0015\",\"transaction\":\"4925|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591272961\",\"franchise\":\"0015\",\"transaction\":\"14105|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591271909\",\"franchise\":\"0003\",\"transaction\":\"12634|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591271891\",\"franchise\":\"0014\",\"transaction\":\"9431|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591270162\",\"franchise\":\"0003\",\"transaction\":\"14105|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591269975\",\"franchise\":\"0016\",\"transaction\":\"12634|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591269909\",\"franchise\":\"0016\",\"transaction\":\"10722|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591269892\",\"franchise\":\"0007\",\"transaction\":\"10722|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591269881\",\"franchise\":\"0007\",\"transaction\":\"10722|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591269871\",\"franchise\":\"0007\",\"transaction\":\"10722|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591268383\",\"franchise\":\"0014\",\"transaction\":\"9431|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591268359\",\"franchise\":\"0014\",\"transaction\":\"13674|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591265519\",\"franchise\":\"0007\",\"transaction\":\"14067|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591265502\",\"franchise\":\"0007\",\"transaction\":\"10722|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591265475\",\"franchise\":\"0007\",\"transaction\":\"13674|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591265464\",\"franchise\":\"0007\",\"transaction\":\"9918|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591265464\",\"franchise\":\"0007\",\"transaction\":\"14122|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591265464\",\"franchise\":\"0007\",\"transaction\":\"14113|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591265464\",\"franchise\":\"0012\",\"transaction\":\"13674|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591264776\",\"franchise\":\"0011\",\"transaction\":\"13646|60|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591255832\",\"franchise\":\"0002\",\"transaction\":\"4925|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591255808\",\"franchise\":\"0006\",\"transaction\":\"14839|80|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591253962\",\"franchise\":\"0012\",\"transaction\":\"14067|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591253962\",\"franchise\":\"0012\",\"transaction\":\"13674|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591253356\",\"franchise\":\"0012\",\"transaction\":\"13674|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591253284\",\"franchise\":\"0015\",\"transaction\":\"14140|28|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591247227\",\"franchise\":\"0014\",\"transaction\":\"14852|35|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591247227\",\"franchise\":\"0009\",\"transaction\":\"13168|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591245977\",\"franchise\":\"0015\",\"transaction\":\"14113|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591245953\",\"franchise\":\"0010\",\"transaction\":\"14122|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591245948\",\"franchise\":\"0010\",\"transaction\":\"14122|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591245917\",\"franchise\":\"0015\",\"transaction\":\"14140|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591245911\",\"franchise\":\"0015\",\"transaction\":\"14140|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591242562\",\"franchise\":\"0015\",\"transaction\":\"14113|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591242476\",\"franchise\":\"0015\",\"transaction\":\"14113|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591242169\",\"franchise\":\"0015\",\"transaction\":\"14113|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591240415\",\"franchise\":\"0015\",\"transaction\":\"14113|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591240398\",\"franchise\":\"0012\",\"transaction\":\"10960|2|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591238976\",\"franchise\":\"0014\",\"transaction\":\"12658|34|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591238823\",\"franchise\":\"0010\",\"transaction\":\"14122|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591238823\",\"franchise\":\"0012\",\"transaction\":\"14067|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591238786\",\"franchise\":\"0010\",\"transaction\":\"14122|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591238767\",\"franchise\":\"0010\",\"transaction\":\"14122|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591238690\",\"franchise\":\"0010\",\"transaction\":\"14113|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591238674\",\"franchise\":\"0010\",\"transaction\":\"14122|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591238665\",\"franchise\":\"0010\",\"transaction\":\"14122|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591237752\",\"franchise\":\"0010\",\"transaction\":\"14113|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591237725\",\"franchise\":\"0010\",\"transaction\":\"14122|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591234359\",\"franchise\":\"0008\",\"transaction\":\"13158|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591234359\",\"franchise\":\"0008\",\"transaction\":\"12647|40|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591233297\",\"franchise\":\"0016\",\"transaction\":\"14101|64|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591233297\",\"franchise\":\"0016\",\"transaction\":\"13364|57|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591232115\",\"franchise\":\"0012\",\"transaction\":\"14067|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591231034\",\"franchise\":\"0012\",\"transaction\":\"14067|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591231009\",\"franchise\":\"0011\",\"transaction\":\"13646|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591230963\",\"franchise\":\"0015\",\"transaction\":\"14140|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591230951\",\"franchise\":\"0009\",\"transaction\":\"13168|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591230942\",\"franchise\":\"0014\",\"transaction\":\"14852|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591227017\",\"franchise\":\"0014\",\"transaction\":\"13606|50|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591227017\",\"franchise\":\"0014\",\"transaction\":\"12197|18|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591227017\",\"franchise\":\"0014\",\"transaction\":\"11680|69|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591225002\",\"franchise\":\"0014\",\"transaction\":\"14067|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591224454\",\"franchise\":\"0014\",\"transaction\":\"14067|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591223915\",\"franchise\":\"0001\",\"transaction\":\"14067|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591223304\",\"franchise\":\"0001\",\"transaction\":\"14067|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591223254\",\"franchise\":\"0001\",\"transaction\":\"9918|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591222146\",\"franchise\":\"0011\",\"transaction\":\"13646|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591222081\",\"franchise\":\"0011\",\"transaction\":\"13646|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591222068\",\"franchise\":\"0011\",\"transaction\":\"13646|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591222058\",\"franchise\":\"0011\",\"transaction\":\"13646|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591222048\",\"franchise\":\"0011\",\"transaction\":\"13646|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591222038\",\"franchise\":\"0011\",\"transaction\":\"13646|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591220595\",\"franchise\":\"0011\",\"transaction\":\"13646|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591217560\",\"franchise\":\"0006\",\"transaction\":\"13646|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591217535\",\"franchise\":\"0013\",\"transaction\":\"13646|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591217100\",\"franchise\":\"0013\",\"transaction\":\"13646|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591215892\",\"franchise\":\"0006\",\"transaction\":\"13646|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591214650\",\"franchise\":\"0006\",\"transaction\":\"13646|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591213738\",\"franchise\":\"0002\",\"transaction\":\"13646|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591212742\",\"franchise\":\"0012\",\"transaction\":\"9918|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591211636\",\"franchise\":\"0015\",\"transaction\":\"14140|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591211628\",\"franchise\":\"0015\",\"transaction\":\"14140|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591211492\",\"franchise\":\"0015\",\"transaction\":\"14140|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591211469\",\"franchise\":\"0015\",\"transaction\":\"14140|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591211468\",\"franchise\":\"0006\",\"transaction\":\"14839|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591211126\",\"franchise\":\"0014\",\"transaction\":\"11680|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591211084\",\"franchise\":\"0011\",\"transaction\":\"14839|78|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591208467\",\"franchise\":\"0015\",\"transaction\":\"14140|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591206224\",\"franchise\":\"0005\",\"transaction\":\"9918|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591206224\",\"franchise\":\"0009\",\"transaction\":\"13168|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591203277\",\"franchise\":\"0009\",\"transaction\":\"13168|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591203030\",\"franchise\":\"0007\",\"transaction\":\"13168|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591203011\",\"franchise\":\"0014\",\"transaction\":\"11680|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591202996\",\"franchise\":\"0014\",\"transaction\":\"14852|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591202974\",\"franchise\":\"0006\",\"transaction\":\"14839|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591198816\",\"franchise\":\"0001\",\"transaction\":\"9918|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591198816\",\"franchise\":\"0001\",\"transaction\":\"14852|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591197867\",\"franchise\":\"0006\",\"transaction\":\"14140|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591197833\",\"franchise\":\"0012\",\"transaction\":\"14140|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591197283\",\"franchise\":\"0012\",\"transaction\":\"14140|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196942\",\"franchise\":\"0012\",\"transaction\":\"14140|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591196893\",\"franchise\":\"0012\",\"transaction\":\"10960|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196887\",\"franchise\":\"0009\",\"transaction\":\"13168|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196874\",\"franchise\":\"0008\",\"transaction\":\"12647|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196869\",\"franchise\":\"0008\",\"transaction\":\"13158|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196860\",\"franchise\":\"0008\",\"transaction\":\"13158|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196854\",\"franchise\":\"0008\",\"transaction\":\"13158|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196841\",\"franchise\":\"0016\",\"transaction\":\"13364|57|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196836\",\"franchise\":\"0016\",\"transaction\":\"13364|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196817\",\"franchise\":\"0014\",\"transaction\":\"12658|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196810\",\"franchise\":\"0014\",\"transaction\":\"14852|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196805\",\"franchise\":\"0014\",\"transaction\":\"12658|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196787\",\"franchise\":\"0014\",\"transaction\":\"12197|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196782\",\"franchise\":\"0014\",\"transaction\":\"12197|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196776\",\"franchise\":\"0014\",\"transaction\":\"12197|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196752\",\"franchise\":\"0014\",\"transaction\":\"13606|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196747\",\"franchise\":\"0014\",\"transaction\":\"13606|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591196742\",\"franchise\":\"0014\",\"transaction\":\"13606|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591195706\",\"franchise\":\"0014\",\"transaction\":\"14852|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591195706\",\"franchise\":\"0016\",\"transaction\":\"13364|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591195706\",\"franchise\":\"0014\",\"transaction\":\"12658|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591193639\",\"franchise\":\"0014\",\"transaction\":\"12197|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591192673\",\"franchise\":\"0009\",\"transaction\":\"13168|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591192619\",\"franchise\":\"0009\",\"transaction\":\"12658|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591192349\",\"franchise\":\"0016\",\"transaction\":\"14852|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591191216\",\"franchise\":\"0006\",\"transaction\":\"12658|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591191216\",\"franchise\":\"0006\",\"transaction\":\"14836|97|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591190839\",\"franchise\":\"0008\",\"transaction\":\"9918|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591190839\",\"franchise\":\"0008\",\"transaction\":\"13158|8|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591190839\",\"franchise\":\"0008\",\"transaction\":\"12647|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591190803\",\"franchise\":\"0008\",\"transaction\":\"12658|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591190354\",\"franchise\":\"0016\",\"transaction\":\"12647|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591190265\",\"franchise\":\"0016\",\"transaction\":\"14852|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189981\",\"franchise\":\"0016\",\"transaction\":\"12647|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189796\",\"franchise\":\"0016\",\"transaction\":\"14101|64|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189760\",\"franchise\":\"0011\",\"transaction\":\"12650|65|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591189608\",\"franchise\":\"0016\",\"transaction\":\"13364|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189487\",\"franchise\":\"0016\",\"transaction\":\"14852|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591189460\",\"franchise\":\"0013\",\"transaction\":\"10960|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591189446\",\"franchise\":\"0006\",\"transaction\":\"14839|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189434\",\"franchise\":\"0016\",\"transaction\":\"13364|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189427\",\"franchise\":\"0006\",\"transaction\":\"13364|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189178\",\"franchise\":\"0016\",\"transaction\":\"12647|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591189178\",\"franchise\":\"0006\",\"transaction\":\"13138|70|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591186920\",\"franchise\":\"0006\",\"transaction\":\"13146|66|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591186743\",\"franchise\":\"0015\",\"transaction\":\"9918|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591186723\",\"franchise\":\"0004\",\"transaction\":\"13158|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591186517\",\"franchise\":\"0006\",\"transaction\":\"13364|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591186499\",\"franchise\":\"0006\",\"transaction\":\"13364|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591186230\",\"franchise\":\"0016\",\"transaction\":\"12677|55|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591185942\",\"franchise\":\"0006\",\"transaction\":\"14839|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591185858\",\"franchise\":\"0006\",\"transaction\":\"14839|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591185758\",\"franchise\":\"0015\",\"transaction\":\"9918|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591185725\",\"franchise\":\"0006\",\"transaction\":\"13364|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591185708\",\"franchise\":\"0006\",\"transaction\":\"14839|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591184937\",\"franchise\":\"0006\",\"transaction\":\"14839|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591184731\",\"franchise\":\"0003\",\"transaction\":\"14839|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591184173\",\"franchise\":\"0006\",\"transaction\":\"13364|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591183787\",\"franchise\":\"0014\",\"transaction\":\"13606|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591183787\",\"franchise\":\"0014\",\"transaction\":\"12197|9|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591183787\",\"franchise\":\"0014\",\"transaction\":\"11680|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591182104\",\"franchise\":\"0006\",\"transaction\":\"12647|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591181232\",\"franchise\":\"0011\",\"transaction\":\"12647|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591181208\",\"franchise\":\"0011\",\"transaction\":\"12650|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591181193\",\"franchise\":\"0007\",\"transaction\":\"14101|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591181187\",\"franchise\":\"0016\",\"transaction\":\"14101|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591181179\",\"franchise\":\"0007\",\"transaction\":\"11680|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591181140\",\"franchise\":\"0007\",\"transaction\":\"12197|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591174505\",\"franchise\":\"0011\",\"transaction\":\"14136|76|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591162245\",\"franchise\":\"0007\",\"transaction\":\"13633|64|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591159437\",\"franchise\":\"0016\",\"transaction\":\"11680|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591159072\",\"franchise\":\"0011\",\"transaction\":\"12647|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591158123\",\"franchise\":\"0011\",\"transaction\":\"12647|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591157878\",\"franchise\":\"0014\",\"transaction\":\"11680|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591157103\",\"franchise\":\"0014\",\"transaction\":\"11680|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591152902\",\"franchise\":\"0012\",\"transaction\":\"13606|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591152834\",\"franchise\":\"0011\",\"transaction\":\"14223|26|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591152834\",\"franchise\":\"0010\",\"transaction\":\"10729|49|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591151561\",\"franchise\":\"0012\",\"transaction\":\"13158|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591151531\",\"franchise\":\"0016\",\"transaction\":\"12677|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591151525\",\"franchise\":\"0016\",\"transaction\":\"14101|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591151519\",\"franchise\":\"0016\",\"transaction\":\"12677|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591148662\",\"franchise\":\"0003\",\"transaction\":\"14109|95|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591148013\",\"franchise\":\"0006\",\"transaction\":\"14836|97|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591147081\",\"franchise\":\"0016\",\"transaction\":\"14778|62|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591146597\",\"franchise\":\"0011\",\"transaction\":\"13158|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591146525\",\"franchise\":\"0011\",\"transaction\":\"12650|63|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591146511\",\"franchise\":\"0011\",\"transaction\":\"14836|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591145964\",\"franchise\":\"0006\",\"transaction\":\"13138|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591143690\",\"franchise\":\"0006\",\"transaction\":\"13146|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591143195\",\"franchise\":\"0016\",\"transaction\":\"13138|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591143167\",\"franchise\":\"0006\",\"transaction\":\"13138|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591143158\",\"franchise\":\"0008\",\"transaction\":\"13146|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591143146\",\"franchise\":\"0008\",\"transaction\":\"13146|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591143124\",\"franchise\":\"0008\",\"transaction\":\"13146|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591143102\",\"franchise\":\"0016\",\"transaction\":\"13138|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591142982\",\"franchise\":\"0016\",\"transaction\":\"13138|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591142969\",\"franchise\":\"0006\",\"transaction\":\"13138|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591142958\",\"franchise\":\"0016\",\"transaction\":\"12677|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591142950\",\"franchise\":\"0014\",\"transaction\":\"12650|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591142937\",\"franchise\":\"0016\",\"transaction\":\"14101|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591142923\",\"franchise\":\"0015\",\"transaction\":\"12610|69|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591142923\",\"franchise\":\"0011\",\"transaction\":\"10738|31|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591141387\",\"franchise\":\"0003\",\"transaction\":\"14109|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591141375\",\"franchise\":\"0003\",\"transaction\":\"14109|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591141375\",\"franchise\":\"0008\",\"transaction\":\"13146|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591139880\",\"franchise\":\"0006\",\"transaction\":\"13158|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591138125\",\"franchise\":\"0001\",\"transaction\":\"13158|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591134522\",\"franchise\":\"0007\",\"transaction\":\"14101|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591134522\",\"franchise\":\"0014\",\"transaction\":\"13606|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591134522\",\"franchise\":\"0014\",\"transaction\":\"12650|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591134522\",\"franchise\":\"0010\",\"transaction\":\"10729|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591133791\",\"franchise\":\"0012\",\"transaction\":\"13606|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591131026\",\"franchise\":\"0006\",\"transaction\":\"13146|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591131020\",\"franchise\":\"0006\",\"transaction\":\"13138|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591131016\",\"franchise\":\"0006\",\"transaction\":\"13146|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591131009\",\"franchise\":\"0006\",\"transaction\":\"13138|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591131003\",\"franchise\":\"0006\",\"transaction\":\"13146|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591130996\",\"franchise\":\"0006\",\"transaction\":\"13138|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591130990\",\"franchise\":\"0006\",\"transaction\":\"13146|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591129747\",\"franchise\":\"0009\",\"transaction\":\"12676|62|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591129634\",\"franchise\":\"0006\",\"transaction\":\"13138|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591129123\",\"franchise\":\"0014\",\"transaction\":\"13606|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591129123\",\"franchise\":\"0006\",\"transaction\":\"13146|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591129123\",\"franchise\":\"0011\",\"transaction\":\"12650|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591126538\",\"franchise\":\"0006\",\"transaction\":\"13138|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591125638\",\"franchise\":\"0012\",\"transaction\":\"13138|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591125149\",\"franchise\":\"0005\",\"transaction\":\"13138|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591124223\",\"franchise\":\"0006\",\"transaction\":\"14836|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591124204\",\"franchise\":\"0007\",\"transaction\":\"13633|64|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591124180\",\"franchise\":\"0003\",\"transaction\":\"14109|79|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591124142\",\"franchise\":\"0011\",\"transaction\":\"14136|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591124123\",\"franchise\":\"0011\",\"transaction\":\"14836|86|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591124026\",\"franchise\":\"0007\",\"transaction\":\"14101|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591123964\",\"franchise\":\"0007\",\"transaction\":\"14101|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591123954\",\"franchise\":\"0007\",\"transaction\":\"13633|59|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591123927\",\"franchise\":\"0003\",\"transaction\":\"14109|74|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591123886\",\"franchise\":\"0006\",\"transaction\":\"14836|84|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591123836\",\"franchise\":\"0007\",\"transaction\":\"13633|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591121545\",\"franchise\":\"0010\",\"transaction\":\"12677|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591121485\",\"franchise\":\"0007\",\"transaction\":\"13633|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591119812\",\"franchise\":\"0011\",\"transaction\":\"12650|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591119314\",\"franchise\":\"0011\",\"transaction\":\"12650|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591119285\",\"franchise\":\"0011\",\"transaction\":\"12650|48|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591119231\",\"franchise\":\"0007\",\"transaction\":\"13633|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591119224\",\"franchise\":\"0010\",\"transaction\":\"12677|37|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591118504\",\"franchise\":\"0007\",\"transaction\":\"13633|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591118455\",\"franchise\":\"0003\",\"transaction\":\"14109|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591118443\",\"franchise\":\"0007\",\"transaction\":\"14101|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591118428\",\"franchise\":\"0007\",\"transaction\":\"14136|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591118407\",\"franchise\":\"0007\",\"transaction\":\"13633|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591118296\",\"franchise\":\"0011\",\"transaction\":\"12650|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591117139\",\"franchise\":\"0011\",\"transaction\":\"14101|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591117086\",\"franchise\":\"0011\",\"transaction\":\"14101|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591115755\",\"franchise\":\"0012\",\"transaction\":\"13606|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591114128\",\"franchise\":\"0006\",\"transaction\":\"13146|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591112205\",\"franchise\":\"0011\",\"transaction\":\"14101|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591112205\",\"franchise\":\"0014\",\"transaction\":\"13146|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591112205\",\"franchise\":\"0014\",\"transaction\":\"12650|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591111421\",\"franchise\":\"0011\",\"transaction\":\"14101|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591111281\",\"franchise\":\"0002\",\"transaction\":\"14101|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591109661\",\"franchise\":\"0015\",\"transaction\":\"12610|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109646\",\"franchise\":\"0003\",\"transaction\":\"14109|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109639\",\"franchise\":\"0010\",\"transaction\":\"12677|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109618\",\"franchise\":\"0003\",\"transaction\":\"14109|64|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109615\",\"franchise\":\"0011\",\"transaction\":\"14223|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109591\",\"franchise\":\"0010\",\"transaction\":\"10729|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109591\",\"franchise\":\"0011\",\"transaction\":\"13146|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109584\",\"franchise\":\"0011\",\"transaction\":\"12650|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591109533\",\"franchise\":\"0010\",\"transaction\":\"13146|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591109085\",\"franchise\":\"0006\",\"transaction\":\"12677|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591108973\",\"franchise\":\"0006\",\"transaction\":\"12650|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591108941\",\"franchise\":\"0013\",\"transaction\":\"14223|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591108846\",\"franchise\":\"0013\",\"transaction\":\"12650|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591107928\",\"franchise\":\"0011\",\"transaction\":\"14136|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591107906\",\"franchise\":\"0011\",\"transaction\":\"14223|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591107898\",\"franchise\":\"0009\",\"transaction\":\"12676|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591107645\",\"franchise\":\"0004\",\"transaction\":\"12650|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591107023\",\"franchise\":\"0006\",\"transaction\":\"14836|79|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591106936\",\"franchise\":\"0003\",\"transaction\":\"14109|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591106909\",\"franchise\":\"0011\",\"transaction\":\"12677|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591105738\",\"franchise\":\"0006\",\"transaction\":\"12677|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591105462\",\"franchise\":\"0003\",\"transaction\":\"14109|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591105372\",\"franchise\":\"0015\",\"transaction\":\"12677|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591104114\",\"franchise\":\"0006\",\"transaction\":\"14109|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591104006\",\"franchise\":\"0016\",\"transaction\":\"14109|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591103882\",\"franchise\":\"0015\",\"transaction\":\"12610|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591103874\",\"franchise\":\"0015\",\"transaction\":\"12610|54|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591103858\",\"franchise\":\"0011\",\"transaction\":\"10738|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591103842\",\"franchise\":\"0009\",\"transaction\":\"12676|58|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591103827\",\"franchise\":\"0016\",\"transaction\":\"14778|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591103763\",\"franchise\":\"0006\",\"transaction\":\"13678|33|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591102665\",\"franchise\":\"0013\",\"transaction\":\"14833|91|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591102549\",\"franchise\":\"0013\",\"transaction\":\"12176|62|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591102522\",\"franchise\":\"0013\",\"transaction\":\"13668|83|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591101490\",\"franchise\":\"0011\",\"transaction\":\"10738|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591101323\",\"franchise\":\"0006\",\"transaction\":\"14836|77|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591100687\",\"franchise\":\"0013\",\"transaction\":\"13668|83|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591100645\",\"franchise\":\"0011\",\"transaction\":\"14836|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591100605\",\"franchise\":\"0011\",\"transaction\":\"14136|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591100515\",\"franchise\":\"0006\",\"transaction\":\"14836|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591100254\",\"franchise\":\"0015\",\"transaction\":\"14136|54|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591100182\",\"franchise\":\"0006\",\"transaction\":\"11228|71|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591100157\",\"franchise\":\"0009\",\"transaction\":\"12676|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099701\",\"franchise\":\"0011\",\"transaction\":\"14223|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099648\",\"franchise\":\"0011\",\"transaction\":\"14136|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099648\",\"franchise\":\"0015\",\"transaction\":\"12610|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099555\",\"franchise\":\"0011\",\"transaction\":\"12610|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099420\",\"franchise\":\"0006\",\"transaction\":\"14836|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099400\",\"franchise\":\"0011\",\"transaction\":\"13606|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099382\",\"franchise\":\"0011\",\"transaction\":\"10738|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591099210\",\"franchise\":\"0011\",\"transaction\":\"12610|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591098809\",\"franchise\":\"0006\",\"transaction\":\"12610|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591098348\",\"franchise\":\"0003\",\"transaction\":\"12610|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591097870\",\"franchise\":\"0006\",\"transaction\":\"10738|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097851\",\"franchise\":\"0008\",\"transaction\":\"13606|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097834\",\"franchise\":\"0011\",\"transaction\":\"14136|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097812\",\"franchise\":\"0011\",\"transaction\":\"14223|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097797\",\"franchise\":\"0011\",\"transaction\":\"14136|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097776\",\"franchise\":\"0011\",\"transaction\":\"14223|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097689\",\"franchise\":\"0006\",\"transaction\":\"14136|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591097579\",\"franchise\":\"0008\",\"transaction\":\"13606|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097570\",\"franchise\":\"0014\",\"transaction\":\"13606|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591097570\",\"franchise\":\"0006\",\"transaction\":\"11228|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096876\",\"franchise\":\"0009\",\"transaction\":\"12676|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096834\",\"franchise\":\"0011\",\"transaction\":\"10738|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096760\",\"franchise\":\"0006\",\"transaction\":\"14223|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096744\",\"franchise\":\"0014\",\"transaction\":\"13606|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096663\",\"franchise\":\"0011\",\"transaction\":\"10738|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096641\",\"franchise\":\"0014\",\"transaction\":\"13606|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096641\",\"franchise\":\"0009\",\"transaction\":\"12676|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096593\",\"franchise\":\"0011\",\"transaction\":\"10738|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096576\",\"franchise\":\"0013\",\"transaction\":\"14223|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591096552\",\"franchise\":\"0006\",\"transaction\":\"14836|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096493\",\"franchise\":\"0011\",\"transaction\":\"10738|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591096401\",\"franchise\":\"0009\",\"transaction\":\"12676|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591096352\",\"franchise\":\"0003\",\"transaction\":\"13612|16|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591096352\",\"franchise\":\"0006\",\"transaction\":\"12187|55|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591086529\",\"franchise\":\"0009\",\"transaction\":\"12676|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591085615\",\"franchise\":\"0006\",\"transaction\":\"13606|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591085598\",\"franchise\":\"0006\",\"transaction\":\"14836|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591085556\",\"franchise\":\"0010\",\"transaction\":\"14059|77|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591085556\",\"franchise\":\"0014\",\"transaction\":\"11674|43|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591080864\",\"franchise\":\"0012\",\"transaction\":\"13606|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591077276\",\"franchise\":\"0014\",\"transaction\":\"14836|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591074406\",\"franchise\":\"0014\",\"transaction\":\"14836|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591074345\",\"franchise\":\"0014\",\"transaction\":\"14836|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591073326\",\"franchise\":\"0011\",\"transaction\":\"12611|55|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591071054\",\"franchise\":\"0007\",\"transaction\":\"14832|100|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591068946\",\"franchise\":\"0006\",\"transaction\":\"13290|23|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591068423\",\"franchise\":\"0010\",\"transaction\":\"14778|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591068416\",\"franchise\":\"0011\",\"transaction\":\"12611|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591068324\",\"franchise\":\"0006\",\"transaction\":\"12187|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591068317\",\"franchise\":\"0006\",\"transaction\":\"12187|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591068303\",\"franchise\":\"0006\",\"transaction\":\"13290|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591068298\",\"franchise\":\"0006\",\"transaction\":\"13290|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591068291\",\"franchise\":\"0006\",\"transaction\":\"13290|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591067935\",\"franchise\":\"0014\",\"transaction\":\"10729|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591066317\",\"franchise\":\"0006\",\"transaction\":\"12187|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591066279\",\"franchise\":\"0006\",\"transaction\":\"12187|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591066011\",\"franchise\":\"0006\",\"transaction\":\"12187|48|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591065991\",\"franchise\":\"0006\",\"transaction\":\"12187|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591065982\",\"franchise\":\"0006\",\"transaction\":\"12187|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591065182\",\"franchise\":\"0008\",\"transaction\":\"10276|34|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591064691\",\"franchise\":\"0010\",\"transaction\":\"14778|58|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591064581\",\"franchise\":\"0010\",\"transaction\":\"10729|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591064227\",\"franchise\":\"0006\",\"transaction\":\"13189|90|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591062892\",\"franchise\":\"0010\",\"transaction\":\"14137|89|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591062892\",\"franchise\":\"0009\",\"transaction\":\"11938|75|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591062350\",\"franchise\":\"0011\",\"transaction\":\"14080|50|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591062029\",\"franchise\":\"0003\",\"transaction\":\"10729|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591060428\",\"franchise\":\"0006\",\"transaction\":\"13678|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591060050\",\"franchise\":\"0006\",\"transaction\":\"12187|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059781\",\"franchise\":\"0011\",\"transaction\":\"13678|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059694\",\"franchise\":\"0006\",\"transaction\":\"13678|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059401\",\"franchise\":\"0013\",\"transaction\":\"14833|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059389\",\"franchise\":\"0006\",\"transaction\":\"11228|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059347\",\"franchise\":\"0013\",\"transaction\":\"12176|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059335\",\"franchise\":\"0006\",\"transaction\":\"13189|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059316\",\"franchise\":\"0013\",\"transaction\":\"13668|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059309\",\"franchise\":\"0007\",\"transaction\":\"13668|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059296\",\"franchise\":\"0007\",\"transaction\":\"13668|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591059296\",\"franchise\":\"0006\",\"transaction\":\"11228|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591056972\",\"franchise\":\"0006\",\"transaction\":\"11228|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591056154\",\"franchise\":\"0011\",\"transaction\":\"11228|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591053464\",\"franchise\":\"0013\",\"transaction\":\"11228|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591051716\",\"franchise\":\"0013\",\"transaction\":\"11228|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591051650\",\"franchise\":\"0001\",\"transaction\":\"11228|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591051632\",\"franchise\":\"0006\",\"transaction\":\"13290|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591049675\",\"franchise\":\"0006\",\"transaction\":\"13189|89|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591048441\",\"franchise\":\"0006\",\"transaction\":\"12187|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591046717\",\"franchise\":\"0006\",\"transaction\":\"12187|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591043873\",\"franchise\":\"0003\",\"transaction\":\"13612|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591043694\",\"franchise\":\"0006\",\"transaction\":\"12187|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591043481\",\"franchise\":\"0006\",\"transaction\":\"12187|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591041751\",\"franchise\":\"0005\",\"transaction\":\"12187|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591040052\",\"franchise\":\"0014\",\"transaction\":\"11674|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591039639\",\"franchise\":\"0010\",\"transaction\":\"14059|77|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591034773\",\"franchise\":\"0009\",\"transaction\":\"11938|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591034753\",\"franchise\":\"0007\",\"transaction\":\"10729|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591033921\",\"franchise\":\"0003\",\"transaction\":\"10729|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591029940\",\"franchise\":\"0011\",\"transaction\":\"12611|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591029098\",\"franchise\":\"0006\",\"transaction\":\"14833|89|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591029083\",\"franchise\":\"0007\",\"transaction\":\"14832|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591029083\",\"franchise\":\"0011\",\"transaction\":\"14080|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591029083\",\"franchise\":\"0006\",\"transaction\":\"10729|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591028292\",\"franchise\":\"0011\",\"transaction\":\"14080|48|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591028285\",\"franchise\":\"0009\",\"transaction\":\"11938|63|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591028267\",\"franchise\":\"0006\",\"transaction\":\"13678|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591028219\",\"franchise\":\"0007\",\"transaction\":\"14832|99|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591028212\",\"franchise\":\"0007\",\"transaction\":\"13668|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591028206\",\"franchise\":\"0007\",\"transaction\":\"14833|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591027753\",\"franchise\":\"0007\",\"transaction\":\"13668|67|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591027743\",\"franchise\":\"0007\",\"transaction\":\"14833|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591027723\",\"franchise\":\"0007\",\"transaction\":\"11674|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591027709\",\"franchise\":\"0007\",\"transaction\":\"14832|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591027191\",\"franchise\":\"0006\",\"transaction\":\"13189|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591026521\",\"franchise\":\"0012\",\"transaction\":\"14778|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591025709\",\"franchise\":\"0006\",\"transaction\":\"13290|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591025702\",\"franchise\":\"0004\",\"transaction\":\"13678|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591022388\",\"franchise\":\"0016\",\"transaction\":\"12611|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591022333\",\"franchise\":\"0004\",\"transaction\":\"13678|19|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591022315\",\"franchise\":\"0011\",\"transaction\":\"13290|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591022283\",\"franchise\":\"0011\",\"transaction\":\"13668|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591021774\",\"franchise\":\"0008\",\"transaction\":\"13290|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591021750\",\"franchise\":\"0006\",\"transaction\":\"14832|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591021750\",\"franchise\":\"0008\",\"transaction\":\"10276|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591021011\",\"franchise\":\"0006\",\"transaction\":\"13189|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020999\",\"franchise\":\"0004\",\"transaction\":\"13678|12|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020847\",\"franchise\":\"0012\",\"transaction\":\"13678|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591020795\",\"franchise\":\"0014\",\"transaction\":\"11674|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020769\",\"franchise\":\"0006\",\"transaction\":\"14833|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020757\",\"franchise\":\"0013\",\"transaction\":\"13189|78|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020689\",\"franchise\":\"0009\",\"transaction\":\"11938|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020662\",\"franchise\":\"0014\",\"transaction\":\"14778|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020655\",\"franchise\":\"0014\",\"transaction\":\"10729|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020632\",\"franchise\":\"0014\",\"transaction\":\"11674|34|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020624\",\"franchise\":\"0016\",\"transaction\":\"12611|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020616\",\"franchise\":\"0016\",\"transaction\":\"12611|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020594\",\"franchise\":\"0006\",\"transaction\":\"13612|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020578\",\"franchise\":\"0010\",\"transaction\":\"13668|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020572\",\"franchise\":\"0010\",\"transaction\":\"12176|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591020208\",\"franchise\":\"0006\",\"transaction\":\"14833|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591019668\",\"franchise\":\"0010\",\"transaction\":\"14833|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591019625\",\"franchise\":\"0010\",\"transaction\":\"13668|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591019605\",\"franchise\":\"0010\",\"transaction\":\"12176|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591019585\",\"franchise\":\"0010\",\"transaction\":\"14137|89|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591019495\",\"franchise\":\"0006\",\"transaction\":\"13668|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591019374\",\"franchise\":\"0009\",\"transaction\":\"11938|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591019347\",\"franchise\":\"0009\",\"transaction\":\"13668|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591019069\",\"franchise\":\"0011\",\"transaction\":\"14080|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591018991\",\"franchise\":\"0006\",\"transaction\":\"13612|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591018295\",\"franchise\":\"0006\",\"transaction\":\"13612|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591017436\",\"franchise\":\"0014\",\"transaction\":\"11674|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591017415\",\"franchise\":\"0014\",\"transaction\":\"14778|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591017415\",\"franchise\":\"0011\",\"transaction\":\"11938|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591017415\",\"franchise\":\"0014\",\"transaction\":\"10729|22|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591016428\",\"franchise\":\"0006\",\"transaction\":\"14080|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591016411\",\"franchise\":\"0011\",\"transaction\":\"11938|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591016381\",\"franchise\":\"0011\",\"transaction\":\"10729|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591016369\",\"franchise\":\"0006\",\"transaction\":\"13189|74|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591016360\",\"franchise\":\"0016\",\"transaction\":\"12176|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591016340\",\"franchise\":\"0016\",\"transaction\":\"12611|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591015982\",\"franchise\":\"0006\",\"transaction\":\"11886|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591015833\",\"franchise\":\"0006\",\"transaction\":\"13189|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591015833\",\"franchise\":\"0006\",\"transaction\":\"10729|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591015530\",\"franchise\":\"0016\",\"transaction\":\"12176|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591015517\",\"franchise\":\"0013\",\"transaction\":\"13189|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591015281\",\"franchise\":\"0016\",\"transaction\":\"12176|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591015273\",\"franchise\":\"0013\",\"transaction\":\"13189|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591015171\",\"franchise\":\"0016\",\"transaction\":\"12611|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591015064\",\"franchise\":\"0015\",\"transaction\":\"10729|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591015049\",\"franchise\":\"0015\",\"transaction\":\"12611|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591014919\",\"franchise\":\"0004\",\"transaction\":\"10729|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591014911\",\"franchise\":\"0016\",\"transaction\":\"14778|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014867\",\"franchise\":\"0015\",\"transaction\":\"14059|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014684\",\"franchise\":\"0001\",\"transaction\":\"14208|56|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591014295\",\"franchise\":\"0016\",\"transaction\":\"14778|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014284\",\"franchise\":\"0011\",\"transaction\":\"11674|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014267\",\"franchise\":\"0011\",\"transaction\":\"11674|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014254\",\"franchise\":\"0016\",\"transaction\":\"11938|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014239\",\"franchise\":\"0007\",\"transaction\":\"14059|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014221\",\"franchise\":\"0007\",\"transaction\":\"14059|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591014043\",\"franchise\":\"0006\",\"transaction\":\"11938|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591013994\",\"franchise\":\"0006\",\"transaction\":\"14832|89|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591013985\",\"franchise\":\"0014\",\"transaction\":\"14832|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591013975\",\"franchise\":\"0014\",\"transaction\":\"14832|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591013964\",\"franchise\":\"0014\",\"transaction\":\"14832|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591013931\",\"franchise\":\"0006\",\"transaction\":\"14080|38|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591013859\",\"franchise\":\"0002\",\"transaction\":\"11938|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591013812\",\"franchise\":\"0014\",\"transaction\":\"14778|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591013799\",\"franchise\":\"0014\",\"transaction\":\"14832|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591012727\",\"franchise\":\"0011\",\"transaction\":\"14080|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591012704\",\"franchise\":\"0006\",\"transaction\":\"14778|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591012688\",\"franchise\":\"0007\",\"transaction\":\"14778|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591012623\",\"franchise\":\"0007\",\"transaction\":\"14778|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591012623\",\"franchise\":\"0011\",\"transaction\":\"14080|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591012611\",\"franchise\":\"0007\",\"transaction\":\"14778|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591012611\",\"franchise\":\"0011\",\"transaction\":\"14080|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591012611\",\"franchise\":\"0011\",\"transaction\":\"11674|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591011301\",\"franchise\":\"0016\",\"transaction\":\"14799|166|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591011301\",\"franchise\":\"0016\",\"transaction\":\"13164|96|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591011301\",\"franchise\":\"0016\",\"transaction\":\"12171|46|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591009191\",\"franchise\":\"0007\",\"transaction\":\"14778|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591009111\",\"franchise\":\"0011\",\"transaction\":\"14080|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591009061\",\"franchise\":\"0001\",\"transaction\":\"14208|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591009049\",\"franchise\":\"0011\",\"transaction\":\"11674|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591005426\",\"franchise\":\"0007\",\"transaction\":\"14080|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1591005398\",\"franchise\":\"0007\",\"transaction\":\"14778|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591005398\",\"franchise\":\"0007\",\"transaction\":\"14137|82|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591005398\",\"franchise\":\"0007\",\"transaction\":\"14059|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591005398\",\"franchise\":\"0006\",\"transaction\":\"11886|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1591005347\",\"franchise\":\"0006\",\"transaction\":\"9902|28|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1591005347\",\"franchise\":\"0005\",\"transaction\":\"13115|10|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590991413\",\"franchise\":\"0002\",\"transaction\":\"14138|65|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590991413\",\"franchise\":\"0004\",\"transaction\":\"12263|71|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590984136\",\"franchise\":\"0006\",\"transaction\":\"11886|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590984030\",\"franchise\":\"0003\",\"transaction\":\"14778|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590983938\",\"franchise\":\"0005\",\"transaction\":\"13115|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590983568\",\"franchise\":\"0008\",\"transaction\":\"11222|115|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590982616\",\"franchise\":\"0006\",\"transaction\":\"13590|75|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590981571\",\"franchise\":\"0006\",\"transaction\":\"10276|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590979218\",\"franchise\":\"0002\",\"transaction\":\"14138|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590978367\",\"franchise\":\"0015\",\"transaction\":\"13630|115|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590976246\",\"franchise\":\"0008\",\"transaction\":\"11222|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590976227\",\"franchise\":\"0006\",\"transaction\":\"13590|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590976155\",\"franchise\":\"0009\",\"transaction\":\"13589|75|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590975996\",\"franchise\":\"0006\",\"transaction\":\"11886|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590975957\",\"franchise\":\"0006\",\"transaction\":\"11886|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590975945\",\"franchise\":\"0006\",\"transaction\":\"11886|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590975939\",\"franchise\":\"0006\",\"transaction\":\"11886|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590975316\",\"franchise\":\"0015\",\"transaction\":\"14059|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590972777\",\"franchise\":\"0006\",\"transaction\":\"11886|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590971145\",\"franchise\":\"0001\",\"transaction\":\"14208|53|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590971049\",\"franchise\":\"0001\",\"transaction\":\"11886|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590967450\",\"franchise\":\"0016\",\"transaction\":\"14137|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967426\",\"franchise\":\"0004\",\"transaction\":\"12263|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967418\",\"franchise\":\"0002\",\"transaction\":\"14137|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967392\",\"franchise\":\"0016\",\"transaction\":\"12171|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967377\",\"franchise\":\"0016\",\"transaction\":\"14799|166|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967369\",\"franchise\":\"0002\",\"transaction\":\"14137|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967354\",\"franchise\":\"0008\",\"transaction\":\"11222|109|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967345\",\"franchise\":\"0008\",\"transaction\":\"11222|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590967337\",\"franchise\":\"0016\",\"transaction\":\"13164|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590963442\",\"franchise\":\"0011\",\"transaction\":\"14208|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590963435\",\"franchise\":\"0011\",\"transaction\":\"14208|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590959585\",\"franchise\":\"0008\",\"transaction\":\"11222|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590959569\",\"franchise\":\"0002\",\"transaction\":\"14137|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590957309\",\"franchise\":\"0005\",\"transaction\":\"13115|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590957289\",\"franchise\":\"0003\",\"transaction\":\"13115|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590953247\",\"franchise\":\"0011\",\"transaction\":\"14059|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590953202\",\"franchise\":\"0011\",\"transaction\":\"14059|63|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590953189\",\"franchise\":\"0011\",\"transaction\":\"14059|59|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590952055\",\"franchise\":\"0002\",\"transaction\":\"14138|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590952055\",\"franchise\":\"0002\",\"transaction\":\"14137|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590952022\",\"franchise\":\"0011\",\"transaction\":\"14059|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948262\",\"franchise\":\"0004\",\"transaction\":\"12263|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948252\",\"franchise\":\"0004\",\"transaction\":\"12263|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948245\",\"franchise\":\"0004\",\"transaction\":\"12263|67|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948218\",\"franchise\":\"0006\",\"transaction\":\"9902|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948201\",\"franchise\":\"0002\",\"transaction\":\"14138|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948194\",\"franchise\":\"0002\",\"transaction\":\"14137|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948186\",\"franchise\":\"0002\",\"transaction\":\"14137|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948165\",\"franchise\":\"0008\",\"transaction\":\"11222|99|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590948153\",\"franchise\":\"0004\",\"transaction\":\"12263|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590947653\",\"franchise\":\"0002\",\"transaction\":\"14137|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590947623\",\"franchise\":\"0002\",\"transaction\":\"14138|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590947347\",\"franchise\":\"0011\",\"transaction\":\"14138|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590947050\",\"franchise\":\"0004\",\"transaction\":\"12263|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590946403\",\"franchise\":\"0003\",\"transaction\":\"13115|4|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590946380\",\"franchise\":\"0005\",\"transaction\":\"13115|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590945861\",\"franchise\":\"0012\",\"transaction\":\"14138|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590945235\",\"franchise\":\"0011\",\"transaction\":\"14138|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590945066\",\"franchise\":\"0012\",\"transaction\":\"14138|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590945004\",\"franchise\":\"0005\",\"transaction\":\"12171|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590944984\",\"franchise\":\"0006\",\"transaction\":\"12263|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590943406\",\"franchise\":\"0005\",\"transaction\":\"13115|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590943366\",\"franchise\":\"0005\",\"transaction\":\"12171|43|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590943321\",\"franchise\":\"0013\",\"transaction\":\"12447|42|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590942819\",\"franchise\":\"0011\",\"transaction\":\"14059|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590941492\",\"franchise\":\"0013\",\"transaction\":\"14059|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590941470\",\"franchise\":\"0013\",\"transaction\":\"14059|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590941412\",\"franchise\":\"0013\",\"transaction\":\"14059|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940952\",\"franchise\":\"0013\",\"transaction\":\"14059|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940944\",\"franchise\":\"0013\",\"transaction\":\"14059|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940847\",\"franchise\":\"0003\",\"transaction\":\"10261|42|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590940833\",\"franchise\":\"0003\",\"transaction\":\"11747|20|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590940539\",\"franchise\":\"0013\",\"transaction\":\"14059|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940370\",\"franchise\":\"0008\",\"transaction\":\"14059|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590940354\",\"franchise\":\"0008\",\"transaction\":\"9902|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940354\",\"franchise\":\"0016\",\"transaction\":\"12171|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940354\",\"franchise\":\"0008\",\"transaction\":\"11222|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940354\",\"franchise\":\"0008\",\"transaction\":\"10276|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590940290\",\"franchise\":\"0015\",\"transaction\":\"13629|141|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590939695\",\"franchise\":\"0006\",\"transaction\":\"11222|87|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590939377\",\"franchise\":\"0006\",\"transaction\":\"13590|74|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590939365\",\"franchise\":\"0009\",\"transaction\":\"13589|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590939359\",\"franchise\":\"0009\",\"transaction\":\"13589|74|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590939351\",\"franchise\":\"0009\",\"transaction\":\"13589|73|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590939236\",\"franchise\":\"0006\",\"transaction\":\"13164|94|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590938921\",\"franchise\":\"0006\",\"transaction\":\"11222|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590938541\",\"franchise\":\"0011\",\"transaction\":\"13164|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590938522\",\"franchise\":\"0006\",\"transaction\":\"11222|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590938499\",\"franchise\":\"0014\",\"transaction\":\"11222|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590936940\",\"franchise\":\"0011\",\"transaction\":\"14208|48|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590936820\",\"franchise\":\"0014\",\"transaction\":\"11222|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590936473\",\"franchise\":\"0014\",\"transaction\":\"11222|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590936453\",\"franchise\":\"0014\",\"transaction\":\"10276|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590936435\",\"franchise\":\"0014\",\"transaction\":\"14799|162|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590936435\",\"franchise\":\"0011\",\"transaction\":\"13164|88|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590935923\",\"franchise\":\"0011\",\"transaction\":\"13164|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590935550\",\"franchise\":\"0015\",\"transaction\":\"13630|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590935167\",\"franchise\":\"0015\",\"transaction\":\"13630|112|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933713\",\"franchise\":\"0016\",\"transaction\":\"14799|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933704\",\"franchise\":\"0013\",\"transaction\":\"14799|145|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933676\",\"franchise\":\"0006\",\"transaction\":\"13164|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933663\",\"franchise\":\"0013\",\"transaction\":\"14799|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933652\",\"franchise\":\"0013\",\"transaction\":\"14799|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933586\",\"franchise\":\"0013\",\"transaction\":\"14799|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590933511\",\"franchise\":\"0004\",\"transaction\":\"9902|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933409\",\"franchise\":\"0006\",\"transaction\":\"14208|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933409\",\"franchise\":\"0006\",\"transaction\":\"13164|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933397\",\"franchise\":\"0016\",\"transaction\":\"14208|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933397\",\"franchise\":\"0016\",\"transaction\":\"13164|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590933376\",\"franchise\":\"0015\",\"transaction\":\"12151|100|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590932946\",\"franchise\":\"0010\",\"transaction\":\"13590|73|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932937\",\"franchise\":\"0009\",\"transaction\":\"13589|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932928\",\"franchise\":\"0009\",\"transaction\":\"13589|67|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932883\",\"franchise\":\"0009\",\"transaction\":\"13589|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590932296\",\"franchise\":\"0016\",\"transaction\":\"13164|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590932269\",\"franchise\":\"0011\",\"transaction\":\"10276|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932250\",\"franchise\":\"0016\",\"transaction\":\"14208|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932244\",\"franchise\":\"0006\",\"transaction\":\"12263|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932229\",\"franchise\":\"0016\",\"transaction\":\"12171|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932218\",\"franchise\":\"0016\",\"transaction\":\"13630|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590932218\",\"franchise\":\"0011\",\"transaction\":\"12171|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590931849\",\"franchise\":\"0011\",\"transaction\":\"10276|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590931827\",\"franchise\":\"0006\",\"transaction\":\"12263|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590931815\",\"franchise\":\"0006\",\"transaction\":\"14208|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590931582\",\"franchise\":\"0015\",\"transaction\":\"12263|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590931530\",\"franchise\":\"0015\",\"transaction\":\"13630|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590930522\",\"franchise\":\"0011\",\"transaction\":\"10276|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590928023\",\"franchise\":\"0007\",\"transaction\":\"13630|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590927978\",\"franchise\":\"0007\",\"transaction\":\"10276|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590926596\",\"franchise\":\"0013\",\"transaction\":\"13680|70|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590926476\",\"franchise\":\"0010\",\"transaction\":\"13590|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590926449\",\"franchise\":\"0013\",\"transaction\":\"13680|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590926426\",\"franchise\":\"0004\",\"transaction\":\"9902|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590926414\",\"franchise\":\"0006\",\"transaction\":\"13630|88|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590926400\",\"franchise\":\"0011\",\"transaction\":\"9902|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590925729\",\"franchise\":\"0011\",\"transaction\":\"12171|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590925654\",\"franchise\":\"0011\",\"transaction\":\"9902|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590925483\",\"franchise\":\"0005\",\"transaction\":\"10699|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590922006\",\"franchise\":\"0001\",\"transaction\":\"12171|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590921918\",\"franchise\":\"0007\",\"transaction\":\"14810|50|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590921610\",\"franchise\":\"0004\",\"transaction\":\"12171|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590915362\",\"franchise\":\"0010\",\"transaction\":\"13592|63|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590911760\",\"franchise\":\"0016\",\"transaction\":\"13277|131|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590907291\",\"franchise\":\"0010\",\"transaction\":\"13590|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590907277\",\"franchise\":\"0010\",\"transaction\":\"13630|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590900365\",\"franchise\":\"0013\",\"transaction\":\"13630|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590900058\",\"franchise\":\"0006\",\"transaction\":\"13630|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590900058\",\"franchise\":\"0013\",\"transaction\":\"12447|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590898350\",\"franchise\":\"0006\",\"transaction\":\"13630|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590897647\",\"franchise\":\"0003\",\"transaction\":\"10261|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590897631\",\"franchise\":\"0003\",\"transaction\":\"11747|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590897631\",\"franchise\":\"0010\",\"transaction\":\"10261|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590897614\",\"franchise\":\"0003\",\"transaction\":\"13630|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590897090\",\"franchise\":\"0015\",\"transaction\":\"13629|141|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590896711\",\"franchise\":\"0016\",\"transaction\":\"13277|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590896053\",\"franchise\":\"0007\",\"transaction\":\"14810|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590893487\",\"franchise\":\"0013\",\"transaction\":\"11747|17|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590893360\",\"franchise\":\"0014\",\"transaction\":\"7836|65|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590890409\",\"franchise\":\"0016\",\"transaction\":\"13277|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590890328\",\"franchise\":\"0016\",\"transaction\":\"13277|122|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590890282\",\"franchise\":\"0009\",\"transaction\":\"13629|135|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590890198\",\"franchise\":\"0009\",\"transaction\":\"13629|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590890168\",\"franchise\":\"0016\",\"transaction\":\"13277|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590890133\",\"franchise\":\"0016\",\"transaction\":\"13277|116|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590890089\",\"franchise\":\"0009\",\"transaction\":\"13629|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590889868\",\"franchise\":\"0016\",\"transaction\":\"13277|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590889841\",\"franchise\":\"0015\",\"transaction\":\"12151|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590889827\",\"franchise\":\"0016\",\"transaction\":\"13277|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590888636\",\"franchise\":\"0010\",\"transaction\":\"10261|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590888378\",\"franchise\":\"0013\",\"transaction\":\"13680|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590887948\",\"franchise\":\"0013\",\"transaction\":\"14056|125|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590887393\",\"franchise\":\"0008\",\"transaction\":\"10261|32|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590887201\",\"franchise\":\"0010\",\"transaction\":\"13671|145|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590886706\",\"franchise\":\"0016\",\"transaction\":\"10261|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590886056\",\"franchise\":\"0005\",\"transaction\":\"10699|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590886047\",\"franchise\":\"0005\",\"transaction\":\"10699|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590886031\",\"franchise\":\"0010\",\"transaction\":\"12447|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590886025\",\"franchise\":\"0010\",\"transaction\":\"12447|37|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590886018\",\"franchise\":\"0010\",\"transaction\":\"12447|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590885997\",\"franchise\":\"0008\",\"transaction\":\"10261|27|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590885982\",\"franchise\":\"0008\",\"transaction\":\"10261|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590883328\",\"franchise\":\"0013\",\"transaction\":\"13680|68|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590883301\",\"franchise\":\"0010\",\"transaction\":\"13671|145|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590882888\",\"franchise\":\"0009\",\"transaction\":\"13319|140|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590882209\",\"franchise\":\"0005\",\"transaction\":\"10699|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590881167\",\"franchise\":\"0009\",\"transaction\":\"13629|122|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590878707\",\"franchise\":\"0007\",\"transaction\":\"14810|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590878678\",\"franchise\":\"0006\",\"transaction\":\"13680|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590878635\",\"franchise\":\"0002\",\"transaction\":\"12151|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590878289\",\"franchise\":\"0002\",\"transaction\":\"12151|88|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590876979\",\"franchise\":\"0006\",\"transaction\":\"10699|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590876223\",\"franchise\":\"0001\",\"transaction\":\"10699|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590875290\",\"franchise\":\"0006\",\"transaction\":\"13590|67|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590875058\",\"franchise\":\"0013\",\"transaction\":\"14056|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590875045\",\"franchise\":\"0016\",\"transaction\":\"13590|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590873920\",\"franchise\":\"0010\",\"transaction\":\"13592|63|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590873920\",\"franchise\":\"0016\",\"transaction\":\"13277|105|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590871429\",\"franchise\":\"0010\",\"transaction\":\"13592|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590871419\",\"franchise\":\"0010\",\"transaction\":\"12447|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867702\",\"franchise\":\"0015\",\"transaction\":\"12151|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867540\",\"franchise\":\"0015\",\"transaction\":\"13629|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867221\",\"franchise\":\"0016\",\"transaction\":\"13277|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867193\",\"franchise\":\"0013\",\"transaction\":\"14056|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867182\",\"franchise\":\"0013\",\"transaction\":\"14056|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867172\",\"franchise\":\"0010\",\"transaction\":\"13671|141|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867165\",\"franchise\":\"0010\",\"transaction\":\"13671|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590867157\",\"franchise\":\"0010\",\"transaction\":\"13671|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590861155\",\"franchise\":\"0008\",\"transaction\":\"10261|24|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590860179\",\"franchise\":\"0014\",\"transaction\":\"7836|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590860157\",\"franchise\":\"0014\",\"transaction\":\"7836|63|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590860139\",\"franchise\":\"0009\",\"transaction\":\"13319|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590859870\",\"franchise\":\"0013\",\"transaction\":\"13629|106|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590859684\",\"franchise\":\"0014\",\"transaction\":\"13592|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590859643\",\"franchise\":\"0006\",\"transaction\":\"12447|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590859635\",\"franchise\":\"0006\",\"transaction\":\"12447|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590859625\",\"franchise\":\"0006\",\"transaction\":\"13680|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590858611\",\"franchise\":\"0006\",\"transaction\":\"14810|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590858511\",\"franchise\":\"0010\",\"transaction\":\"12151|67|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590858416\",\"franchise\":\"0006\",\"transaction\":\"11747|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590858393\",\"franchise\":\"0016\",\"transaction\":\"13590|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590858130\",\"franchise\":\"0014\",\"transaction\":\"13592|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590858130\",\"franchise\":\"0009\",\"transaction\":\"13319|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590857376\",\"franchise\":\"0015\",\"transaction\":\"13629|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590857241\",\"franchise\":\"0010\",\"transaction\":\"13629|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590857241\",\"franchise\":\"0015\",\"transaction\":\"12151|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590857007\",\"franchise\":\"0002\",\"transaction\":\"12151|29|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590856970\",\"franchise\":\"0002\",\"transaction\":\"12151|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590856808\",\"franchise\":\"0002\",\"transaction\":\"12151|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590855853\",\"franchise\":\"0012\",\"transaction\":\"12630|141|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590854918\",\"franchise\":\"0006\",\"transaction\":\"12447|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590854495\",\"franchise\":\"0003\",\"transaction\":\"9099|75|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590854056\",\"franchise\":\"0010\",\"transaction\":\"13629|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590854015\",\"franchise\":\"0010\",\"transaction\":\"13629|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590853967\",\"franchise\":\"0010\",\"transaction\":\"13129|152|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590851822\",\"franchise\":\"0005\",\"transaction\":\"13592|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590850917\",\"franchise\":\"0013\",\"transaction\":\"14056|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590850907\",\"franchise\":\"0013\",\"transaction\":\"14056|105|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590850156\",\"franchise\":\"0014\",\"transaction\":\"7836|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590850156\",\"franchise\":\"0016\",\"transaction\":\"13592|44|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590850129\",\"franchise\":\"0005\",\"transaction\":\"7836|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590850129\",\"franchise\":\"0016\",\"transaction\":\"13592|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590850129\",\"franchise\":\"0007\",\"transaction\":\"13277|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590849113\",\"franchise\":\"0009\",\"transaction\":\"13319|105|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848970\",\"franchise\":\"0016\",\"transaction\":\"10261|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848942\",\"franchise\":\"0016\",\"transaction\":\"10261|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848881\",\"franchise\":\"0016\",\"transaction\":\"13590|59|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848869\",\"franchise\":\"0003\",\"transaction\":\"9099|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848795\",\"franchise\":\"0003\",\"transaction\":\"9099|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848742\",\"franchise\":\"0007\",\"transaction\":\"14810|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848725\",\"franchise\":\"0007\",\"transaction\":\"13277|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848715\",\"franchise\":\"0007\",\"transaction\":\"13277|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848621\",\"franchise\":\"0007\",\"transaction\":\"13277|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848604\",\"franchise\":\"0007\",\"transaction\":\"14810|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848559\",\"franchise\":\"0016\",\"transaction\":\"13277|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590848495\",\"franchise\":\"0016\",\"transaction\":\"13590|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848477\",\"franchise\":\"0016\",\"transaction\":\"13592|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848467\",\"franchise\":\"0016\",\"transaction\":\"10261|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848458\",\"franchise\":\"0016\",\"transaction\":\"13592|6|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590848358\",\"franchise\":\"0007\",\"transaction\":\"10261|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590847785\",\"franchise\":\"0011\",\"transaction\":\"11247|105|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590847539\",\"franchise\":\"0010\",\"transaction\":\"13156|175|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590847397\",\"franchise\":\"0010\",\"transaction\":\"13671|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590847325\",\"franchise\":\"0006\",\"transaction\":\"13680|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590847041\",\"franchise\":\"0004\",\"transaction\":\"10697|75|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590845901\",\"franchise\":\"0015\",\"transaction\":\"13592|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845900\",\"franchise\":\"0015\",\"transaction\":\"14810|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845811\",\"franchise\":\"0015\",\"transaction\":\"13592|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845776\",\"franchise\":\"0011\",\"transaction\":\"14810|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845634\",\"franchise\":\"0005\",\"transaction\":\"13592|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590845483\",\"franchise\":\"0001\",\"transaction\":\"13610|226|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590845453\",\"franchise\":\"0001\",\"transaction\":\"13635|194|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590845353\",\"franchise\":\"0005\",\"transaction\":\"7836|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845233\",\"franchise\":\"0011\",\"transaction\":\"14810|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845213\",\"franchise\":\"0006\",\"transaction\":\"13590|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845195\",\"franchise\":\"0006\",\"transaction\":\"12447|18|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845194\",\"franchise\":\"0011\",\"transaction\":\"14810|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845185\",\"franchise\":\"0006\",\"transaction\":\"13680|52|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845177\",\"franchise\":\"0015\",\"transaction\":\"12447|16|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845111\",\"franchise\":\"0006\",\"transaction\":\"7836|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845102\",\"franchise\":\"0015\",\"transaction\":\"13680|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845100\",\"franchise\":\"0013\",\"transaction\":\"7836|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845090\",\"franchise\":\"0011\",\"transaction\":\"12447|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845062\",\"franchise\":\"0009\",\"transaction\":\"13319|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845062\",\"franchise\":\"0006\",\"transaction\":\"12620|134|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590845033\",\"franchise\":\"0015\",\"transaction\":\"13680|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845032\",\"franchise\":\"0013\",\"transaction\":\"13680|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590845027\",\"franchise\":\"0013\",\"transaction\":\"7836|13|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844962\",\"franchise\":\"0013\",\"transaction\":\"13680|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590844958\",\"franchise\":\"0013\",\"transaction\":\"14056|104|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844923\",\"franchise\":\"0013\",\"transaction\":\"14056|102|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844734\",\"franchise\":\"0013\",\"transaction\":\"14056|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844474\",\"franchise\":\"0006\",\"transaction\":\"12620|134|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844416\",\"franchise\":\"0009\",\"transaction\":\"13319|99|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844402\",\"franchise\":\"0009\",\"transaction\":\"13319|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844353\",\"franchise\":\"0008\",\"transaction\":\"11747|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844353\",\"franchise\":\"0002\",\"transaction\":\"10703|130|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590844342\",\"franchise\":\"0011\",\"transaction\":\"14810|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844341\",\"franchise\":\"0009\",\"transaction\":\"13319|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844319\",\"franchise\":\"0006\",\"transaction\":\"12620|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844299\",\"franchise\":\"0008\",\"transaction\":\"11747|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590844074\",\"franchise\":\"0008\",\"transaction\":\"11747|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590844062\",\"franchise\":\"0011\",\"transaction\":\"11247|105|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843970\",\"franchise\":\"0010\",\"transaction\":\"13671|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843787\",\"franchise\":\"0006\",\"transaction\":\"14810|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843661\",\"franchise\":\"0016\",\"transaction\":\"13590|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843597\",\"franchise\":\"0016\",\"transaction\":\"7836|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843555\",\"franchise\":\"0009\",\"transaction\":\"13319|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843545\",\"franchise\":\"0015\",\"transaction\":\"14810|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590843529\",\"franchise\":\"0011\",\"transaction\":\"12447|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843503\",\"franchise\":\"0013\",\"transaction\":\"13671|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843474\",\"franchise\":\"0013\",\"transaction\":\"13671|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843464\",\"franchise\":\"0013\",\"transaction\":\"13671|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843456\",\"franchise\":\"0013\",\"transaction\":\"13671|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843448\",\"franchise\":\"0013\",\"transaction\":\"13671|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843441\",\"franchise\":\"0013\",\"transaction\":\"13671|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843428\",\"franchise\":\"0011\",\"transaction\":\"12447|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590843400\",\"franchise\":\"0013\",\"transaction\":\"13671|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590842827\",\"franchise\":\"0006\",\"transaction\":\"7836|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590842015\",\"franchise\":\"0009\",\"transaction\":\"13319|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590842003\",\"franchise\":\"0011\",\"transaction\":\"13671|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590841995\",\"franchise\":\"0009\",\"transaction\":\"13319|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590841986\",\"franchise\":\"0012\",\"transaction\":\"13671|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590841959\",\"franchise\":\"0011\",\"transaction\":\"12447|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590839587\",\"franchise\":\"0009\",\"transaction\":\"13319|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590839113\",\"franchise\":\"0012\",\"transaction\":\"13671|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590837303\",\"franchise\":\"0007\",\"transaction\":\"11671|158|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590822991\",\"franchise\":\"0014\",\"transaction\":\"14800|201|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590821322\",\"franchise\":\"0001\",\"transaction\":\"14056|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590820528\",\"franchise\":\"0009\",\"transaction\":\"12150|165|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590814475\",\"franchise\":\"0011\",\"transaction\":\"13128|205|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590813149\",\"franchise\":\"0003\",\"transaction\":\"9099|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590812508\",\"franchise\":\"0006\",\"transaction\":\"14056|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590812502\",\"franchise\":\"0016\",\"transaction\":\"14056|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590812482\",\"franchise\":\"0016\",\"transaction\":\"14056|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590812230\",\"franchise\":\"0003\",\"transaction\":\"9099|59|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590812218\",\"franchise\":\"0016\",\"transaction\":\"14056|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590812142\",\"franchise\":\"0004\",\"transaction\":\"14056|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590812015\",\"franchise\":\"0012\",\"transaction\":\"12630|141|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590811278\",\"franchise\":\"0003\",\"transaction\":\"9099|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590811242\",\"franchise\":\"0010\",\"transaction\":\"13156|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590811227\",\"franchise\":\"0001\",\"transaction\":\"12630|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590811103\",\"franchise\":\"0005\",\"transaction\":\"13590|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810822\",\"franchise\":\"0001\",\"transaction\":\"13590|46|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810716\",\"franchise\":\"0010\",\"transaction\":\"13129|152|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810694\",\"franchise\":\"0002\",\"transaction\":\"10703|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810687\",\"franchise\":\"0002\",\"transaction\":\"10703|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810676\",\"franchise\":\"0009\",\"transaction\":\"12150|165|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810666\",\"franchise\":\"0009\",\"transaction\":\"12150|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810659\",\"franchise\":\"0009\",\"transaction\":\"12150|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810648\",\"franchise\":\"0009\",\"transaction\":\"12150|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810636\",\"franchise\":\"0004\",\"transaction\":\"10697|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810635\",\"franchise\":\"0013\",\"transaction\":\"13590|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810629\",\"franchise\":\"0004\",\"transaction\":\"10697|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810278\",\"franchise\":\"0004\",\"transaction\":\"10697|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590810262\",\"franchise\":\"0006\",\"transaction\":\"13590|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590806771\",\"franchise\":\"0004\",\"transaction\":\"10697|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590806755\",\"franchise\":\"0004\",\"transaction\":\"10697|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590805750\",\"franchise\":\"0006\",\"transaction\":\"13590|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590804698\",\"franchise\":\"0007\",\"transaction\":\"13590|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590804582\",\"franchise\":\"0011\",\"transaction\":\"11247|103|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590804220\",\"franchise\":\"0010\",\"transaction\":\"13156|173|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590804212\",\"franchise\":\"0011\",\"transaction\":\"13128|205|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590804160\",\"franchise\":\"0007\",\"transaction\":\"13590|14|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590803629\",\"franchise\":\"0004\",\"transaction\":\"10697|28|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802968\",\"franchise\":\"0004\",\"transaction\":\"12175|149|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590802820\",\"franchise\":\"0013\",\"transaction\":\"9988|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590802514\",\"franchise\":\"0001\",\"transaction\":\"13590|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802500\",\"franchise\":\"0012\",\"transaction\":\"10697|26|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802388\",\"franchise\":\"0001\",\"transaction\":\"13590|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590802300\",\"franchise\":\"0006\",\"transaction\":\"10697|25|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802287\",\"franchise\":\"0001\",\"transaction\":\"12630|134|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802277\",\"franchise\":\"0001\",\"transaction\":\"13129|146|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802263\",\"franchise\":\"0001\",\"transaction\":\"13610|226|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802248\",\"franchise\":\"0001\",\"transaction\":\"13635|194|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802195\",\"franchise\":\"0006\",\"transaction\":\"10697|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590802036\",\"franchise\":\"0014\",\"transaction\":\"14071|151|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590802013\",\"franchise\":\"0014\",\"transaction\":\"11192|95|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590801932\",\"franchise\":\"0005\",\"transaction\":\"10697|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590801846\",\"franchise\":\"0006\",\"transaction\":\"12620|129|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590801791\",\"franchise\":\"0003\",\"transaction\":\"12620|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590801235\",\"franchise\":\"0009\",\"transaction\":\"11678|170|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590801152\",\"franchise\":\"0002\",\"transaction\":\"10703|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590800337\",\"franchise\":\"0012\",\"transaction\":\"11247|97|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590800316\",\"franchise\":\"0005\",\"transaction\":\"14104|195|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590800082\",\"franchise\":\"0003\",\"transaction\":\"12620|122|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590798212\",\"franchise\":\"0011\",\"transaction\":\"13299|202|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590789608\",\"franchise\":\"0007\",\"transaction\":\"11671|158|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590789561\",\"franchise\":\"0013\",\"transaction\":\"9988|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786888\",\"franchise\":\"0013\",\"transaction\":\"9988|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786787\",\"franchise\":\"0013\",\"transaction\":\"12620|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786776\",\"franchise\":\"0006\",\"transaction\":\"10703|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786580\",\"franchise\":\"0008\",\"transaction\":\"11247|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786573\",\"franchise\":\"0008\",\"transaction\":\"11247|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786563\",\"franchise\":\"0014\",\"transaction\":\"12630|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786555\",\"franchise\":\"0014\",\"transaction\":\"12630|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786546\",\"franchise\":\"0014\",\"transaction\":\"13129|145|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590786538\",\"franchise\":\"0014\",\"transaction\":\"13129|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590784323\",\"franchise\":\"0008\",\"transaction\":\"11247|86|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590779304\",\"franchise\":\"0014\",\"transaction\":\"14800|201|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590777449\",\"franchise\":\"0012\",\"transaction\":\"11247|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590777439\",\"franchise\":\"0011\",\"transaction\":\"11247|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590776674\",\"franchise\":\"0009\",\"transaction\":\"12150|107|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775739\",\"franchise\":\"0010\",\"transaction\":\"12150|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775737\",\"franchise\":\"0010\",\"transaction\":\"14800|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775708\",\"franchise\":\"0010\",\"transaction\":\"14800|191|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775278\",\"franchise\":\"0014\",\"transaction\":\"14800|172|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775278\",\"franchise\":\"0014\",\"transaction\":\"13129|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775278\",\"franchise\":\"0014\",\"transaction\":\"12630|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775278\",\"franchise\":\"0002\",\"transaction\":\"12150|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590775028\",\"franchise\":\"0008\",\"transaction\":\"13129|124|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590772549\",\"franchise\":\"0013\",\"transaction\":\"13131|220|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590771724\",\"franchise\":\"0011\",\"transaction\":\"13156|170|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771532\",\"franchise\":\"0012\",\"transaction\":\"12630|109|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771477\",\"franchise\":\"0010\",\"transaction\":\"13156|165|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771460\",\"franchise\":\"0013\",\"transaction\":\"9988|7|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771451\",\"franchise\":\"0013\",\"transaction\":\"9988|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771423\",\"franchise\":\"0014\",\"transaction\":\"11192|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771416\",\"franchise\":\"0014\",\"transaction\":\"11192|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771405\",\"franchise\":\"0014\",\"transaction\":\"11192|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771335\",\"franchise\":\"0013\",\"transaction\":\"13131|220|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771317\",\"franchise\":\"0009\",\"transaction\":\"11678|170|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771288\",\"franchise\":\"0009\",\"transaction\":\"11678|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771270\",\"franchise\":\"0013\",\"transaction\":\"13131|215|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771266\",\"franchise\":\"0005\",\"transaction\":\"14104|195|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771252\",\"franchise\":\"0011\",\"transaction\":\"13128|204|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771249\",\"franchise\":\"0011\",\"transaction\":\"13299|202|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771234\",\"franchise\":\"0011\",\"transaction\":\"11247|78|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771205\",\"franchise\":\"0011\",\"transaction\":\"11247|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771198\",\"franchise\":\"0011\",\"transaction\":\"11247|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771164\",\"franchise\":\"0011\",\"transaction\":\"13129|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771039\",\"franchise\":\"0010\",\"transaction\":\"14800|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771025\",\"franchise\":\"0010\",\"transaction\":\"14800|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771014\",\"franchise\":\"0010\",\"transaction\":\"14800|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590771002\",\"franchise\":\"0010\",\"transaction\":\"14800|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590770780\",\"franchise\":\"0010\",\"transaction\":\"14800|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590767817\",\"franchise\":\"0010\",\"transaction\":\"13156|161|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590766936\",\"franchise\":\"0010\",\"transaction\":\"13404|170|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590765988\",\"franchise\":\"0013\",\"transaction\":\"12620|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590765766\",\"franchise\":\"0002\",\"transaction\":\"12150|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590765209\",\"franchise\":\"0003\",\"transaction\":\"11679|165|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590765159\",\"franchise\":\"0001\",\"transaction\":\"13163|192|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590765128\",\"franchise\":\"0009\",\"transaction\":\"13610|223|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590765123\",\"franchise\":\"0002\",\"transaction\":\"12150|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590765106\",\"franchise\":\"0014\",\"transaction\":\"13610|210|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590765055\",\"franchise\":\"0014\",\"transaction\":\"13610|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590764758\",\"franchise\":\"0010\",\"transaction\":\"13404|170|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590764752\",\"franchise\":\"0003\",\"transaction\":\"11679|165|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590764744\",\"franchise\":\"0003\",\"transaction\":\"11679|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590762838\",\"franchise\":\"0010\",\"transaction\":\"13156|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590762791\",\"franchise\":\"0006\",\"transaction\":\"10703|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590762791\",\"franchise\":\"0005\",\"transaction\":\"14802|276|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590762768\",\"franchise\":\"0011\",\"transaction\":\"12620|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590762704\",\"franchise\":\"0009\",\"transaction\":\"10703|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590762571\",\"franchise\":\"0011\",\"transaction\":\"12630|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590762530\",\"franchise\":\"0010\",\"transaction\":\"13156|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590762501\",\"franchise\":\"0010\",\"transaction\":\"13156|143|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590761412\",\"franchise\":\"0010\",\"transaction\":\"13156|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590761391\",\"franchise\":\"0014\",\"transaction\":\"13129|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590761391\",\"franchise\":\"0014\",\"transaction\":\"11192|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590761355\",\"franchise\":\"0005\",\"transaction\":\"14104|191|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590761314\",\"franchise\":\"0010\",\"transaction\":\"13635|190|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590761295\",\"franchise\":\"0008\",\"transaction\":\"14777|104|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590760796\",\"franchise\":\"0005\",\"transaction\":\"12625|253|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590760341\",\"franchise\":\"0014\",\"transaction\":\"12630|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590759761\",\"franchise\":\"0004\",\"transaction\":\"12175|149|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590759669\",\"franchise\":\"0013\",\"transaction\":\"9988|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590759617\",\"franchise\":\"0013\",\"transaction\":\"9988|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590759405\",\"franchise\":\"0006\",\"transaction\":\"13156|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590759405\",\"franchise\":\"0014\",\"transaction\":\"12630|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590759120\",\"franchise\":\"0006\",\"transaction\":\"11671|156|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590759056\",\"franchise\":\"0008\",\"transaction\":\"13156|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590758872\",\"franchise\":\"0003\",\"transaction\":\"11679|155|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758848\",\"franchise\":\"0014\",\"transaction\":\"12630|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590758832\",\"franchise\":\"0014\",\"transaction\":\"14071|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758813\",\"franchise\":\"0009\",\"transaction\":\"14071|135|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758813\",\"franchise\":\"0014\",\"transaction\":\"13610|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758813\",\"franchise\":\"0014\",\"transaction\":\"13129|102|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758813\",\"franchise\":\"0014\",\"transaction\":\"11192|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758813\",\"franchise\":\"0006\",\"transaction\":\"10703|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758267\",\"franchise\":\"0011\",\"transaction\":\"12620|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758144\",\"franchise\":\"0011\",\"transaction\":\"13610|166|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590758030\",\"franchise\":\"0009\",\"transaction\":\"11678|152|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757794\",\"franchise\":\"0011\",\"transaction\":\"11247|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757756\",\"franchise\":\"0008\",\"transaction\":\"13128|202|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757752\",\"franchise\":\"0003\",\"transaction\":\"11679|149|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757718\",\"franchise\":\"0009\",\"transaction\":\"14071|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757718\",\"franchise\":\"0008\",\"transaction\":\"13129|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757718\",\"franchise\":\"0008\",\"transaction\":\"11192|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757702\",\"franchise\":\"0006\",\"transaction\":\"12620|92|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757602\",\"franchise\":\"0016\",\"transaction\":\"11671|155|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757580\",\"franchise\":\"0016\",\"transaction\":\"13610|155|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757360\",\"franchise\":\"0011\",\"transaction\":\"11247|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757339\",\"franchise\":\"0011\",\"transaction\":\"13129|79|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757339\",\"franchise\":\"0016\",\"transaction\":\"12620|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590757339\",\"franchise\":\"0011\",\"transaction\":\"11192|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756965\",\"franchise\":\"0016\",\"transaction\":\"12620|86|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756950\",\"franchise\":\"0009\",\"transaction\":\"14071|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756924\",\"franchise\":\"0005\",\"transaction\":\"14104|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756921\",\"franchise\":\"0011\",\"transaction\":\"11192|42|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756914\",\"franchise\":\"0004\",\"transaction\":\"14104|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756908\",\"franchise\":\"0016\",\"transaction\":\"11678|141|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756907\",\"franchise\":\"0011\",\"transaction\":\"13129|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756905\",\"franchise\":\"0006\",\"transaction\":\"12620|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756898\",\"franchise\":\"0009\",\"transaction\":\"11678|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756893\",\"franchise\":\"0014\",\"transaction\":\"13128|200|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756889\",\"franchise\":\"0016\",\"transaction\":\"13610|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756842\",\"franchise\":\"0009\",\"transaction\":\"14071|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756806\",\"franchise\":\"0009\",\"transaction\":\"11678|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756797\",\"franchise\":\"0011\",\"transaction\":\"12620|62|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756695\",\"franchise\":\"0009\",\"transaction\":\"11678|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590756667\",\"franchise\":\"0009\",\"transaction\":\"14071|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756554\",\"franchise\":\"0004\",\"transaction\":\"14104|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756524\",\"franchise\":\"0016\",\"transaction\":\"14071|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756515\",\"franchise\":\"0016\",\"transaction\":\"14071|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756478\",\"franchise\":\"0006\",\"transaction\":\"12620|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756261\",\"franchise\":\"0012\",\"transaction\":\"12620|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590756181\",\"franchise\":\"0006\",\"transaction\":\"13129|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756181\",\"franchise\":\"0016\",\"transaction\":\"12186|120|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590756093\",\"franchise\":\"0016\",\"transaction\":\"14071|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590756056\",\"franchise\":\"0016\",\"transaction\":\"14071|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590755925\",\"franchise\":\"0016\",\"transaction\":\"14071|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590755873\",\"franchise\":\"0016\",\"transaction\":\"11671|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590755854\",\"franchise\":\"0005\",\"transaction\":\"14104|146|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590755854\",\"franchise\":\"0003\",\"transaction\":\"11679|146|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590755830\",\"franchise\":\"0016\",\"transaction\":\"13610|132|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590755830\",\"franchise\":\"0004\",\"transaction\":\"11671|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590755406\",\"franchise\":\"0011\",\"transaction\":\"11247|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590755392\",\"franchise\":\"0011\",\"transaction\":\"11247|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754789\",\"franchise\":\"0006\",\"transaction\":\"13129|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754736\",\"franchise\":\"0015\",\"transaction\":\"13129|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590754726\",\"franchise\":\"0003\",\"transaction\":\"12626|175|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590754683\",\"franchise\":\"0011\",\"transaction\":\"13299|200|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754655\",\"franchise\":\"0006\",\"transaction\":\"10703|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754619\",\"franchise\":\"0006\",\"transaction\":\"13610|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754617\",\"franchise\":\"0006\",\"transaction\":\"13610|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754602\",\"franchise\":\"0004\",\"transaction\":\"11671|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754517\",\"franchise\":\"0004\",\"transaction\":\"11671|116|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754475\",\"franchise\":\"0004\",\"transaction\":\"13610|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590754420\",\"franchise\":\"0011\",\"transaction\":\"11247|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590754360\",\"franchise\":\"0011\",\"transaction\":\"10703|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590754091\",\"franchise\":\"0005\",\"transaction\":\"14104|145|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590753789\",\"franchise\":\"0008\",\"transaction\":\"14777|104|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590753736\",\"franchise\":\"0002\",\"transaction\":\"14797|200|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590753736\",\"franchise\":\"0002\",\"transaction\":\"11675|201|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590753541\",\"franchise\":\"0006\",\"transaction\":\"11671|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590753400\",\"franchise\":\"0005\",\"transaction\":\"11247|49|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590753389\",\"franchise\":\"0005\",\"transaction\":\"11247|47|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590753312\",\"franchise\":\"0006\",\"transaction\":\"11192|39|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590753295\",\"franchise\":\"0005\",\"transaction\":\"14104|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590753285\",\"franchise\":\"0005\",\"transaction\":\"14104|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752368\",\"franchise\":\"0005\",\"transaction\":\"11247|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752311\",\"franchise\":\"0005\",\"transaction\":\"14104|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752292\",\"franchise\":\"0005\",\"transaction\":\"11247|21|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752276\",\"franchise\":\"0007\",\"transaction\":\"12175|147|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752271\",\"franchise\":\"0005\",\"transaction\":\"14104|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752248\",\"franchise\":\"0006\",\"transaction\":\"11247|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752212\",\"franchise\":\"0006\",\"transaction\":\"14104|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590752209\",\"franchise\":\"0007\",\"transaction\":\"11247|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590751919\",\"franchise\":\"0003\",\"transaction\":\"14104|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590733491\",\"franchise\":\"0002\",\"transaction\":\"10271|118|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590730432\",\"franchise\":\"0012\",\"transaction\":\"12175|146|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590730420\",\"franchise\":\"0004\",\"transaction\":\"12175|145|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590729333\",\"franchise\":\"0013\",\"transaction\":\"13131|213|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590729285\",\"franchise\":\"0013\",\"transaction\":\"13299|193|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590729230\",\"franchise\":\"0013\",\"transaction\":\"11192|36|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590726596\",\"franchise\":\"0002\",\"transaction\":\"14102|170|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590725942\",\"franchise\":\"0006\",\"transaction\":\"11192|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725728\",\"franchise\":\"0008\",\"transaction\":\"14777|103|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725720\",\"franchise\":\"0008\",\"transaction\":\"14777|102|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725706\",\"franchise\":\"0010\",\"transaction\":\"13404|165|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725684\",\"franchise\":\"0008\",\"transaction\":\"14777|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725669\",\"franchise\":\"0004\",\"transaction\":\"12175|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725658\",\"franchise\":\"0003\",\"transaction\":\"11679|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725638\",\"franchise\":\"0016\",\"transaction\":\"12186|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725626\",\"franchise\":\"0016\",\"transaction\":\"12186|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725610\",\"franchise\":\"0003\",\"transaction\":\"12626|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725578\",\"franchise\":\"0002\",\"transaction\":\"14797|200|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725565\",\"franchise\":\"0002\",\"transaction\":\"14797|197|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590725553\",\"franchise\":\"0002\",\"transaction\":\"14797|193|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723832\",\"franchise\":\"0010\",\"transaction\":\"13404|159|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723822\",\"franchise\":\"0004\",\"transaction\":\"12175|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723723\",\"franchise\":\"0010\",\"transaction\":\"13404|156|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723716\",\"franchise\":\"0009\",\"transaction\":\"14071|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723708\",\"franchise\":\"0001\",\"transaction\":\"13635|182|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723693\",\"franchise\":\"0010\",\"transaction\":\"13610|157|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723664\",\"franchise\":\"0014\",\"transaction\":\"13131|211|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723065\",\"franchise\":\"0009\",\"transaction\":\"14071|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590723065\",\"franchise\":\"0014\",\"transaction\":\"13128|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590722302\",\"franchise\":\"0006\",\"transaction\":\"11192|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590722009\",\"franchise\":\"0003\",\"transaction\":\"11679|134|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590721958\",\"franchise\":\"0001\",\"transaction\":\"13635|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590721958\",\"franchise\":\"0001\",\"transaction\":\"13610|156|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590721958\",\"franchise\":\"0001\",\"transaction\":\"13404|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590721958\",\"franchise\":\"0001\",\"transaction\":\"13163|192|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590721958\",\"franchise\":\"0014\",\"transaction\":\"11679|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590721180\",\"franchise\":\"0014\",\"transaction\":\"11679|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590721140\",\"franchise\":\"0001\",\"transaction\":\"11192|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590721012\",\"franchise\":\"0014\",\"transaction\":\"11679|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590720994\",\"franchise\":\"0014\",\"transaction\":\"11679|117|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590720693\",\"franchise\":\"0012\",\"transaction\":\"13113|135|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590720364\",\"franchise\":\"0009\",\"transaction\":\"13610|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590720214\",\"franchise\":\"0009\",\"transaction\":\"14071|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590719672\",\"franchise\":\"0012\",\"transaction\":\"12652|211|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590719612\",\"franchise\":\"0012\",\"transaction\":\"14073|182|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590719593\",\"franchise\":\"0008\",\"transaction\":\"11232|201|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590719590\",\"franchise\":\"0005\",\"transaction\":\"14802|276|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590719575\",\"franchise\":\"0002\",\"transaction\":\"14802|275|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590719561\",\"franchise\":\"0002\",\"transaction\":\"14802|265|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590719561\",\"franchise\":\"0008\",\"transaction\":\"13153|15|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590719123\",\"franchise\":\"0014\",\"transaction\":\"11679|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590719112\",\"franchise\":\"0009\",\"transaction\":\"11244|182|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590719058\",\"franchise\":\"0014\",\"transaction\":\"11679|109|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590719020\",\"franchise\":\"0012\",\"transaction\":\"13113|135|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590718993\",\"franchise\":\"0012\",\"transaction\":\"13113|132|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590718891\",\"franchise\":\"0012\",\"transaction\":\"13113|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590718879\",\"franchise\":\"0012\",\"transaction\":\"13113|129|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590718093\",\"franchise\":\"0008\",\"transaction\":\"14777|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590717634\",\"franchise\":\"0002\",\"transaction\":\"11675|201|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590717539\",\"franchise\":\"0005\",\"transaction\":\"13277|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590717515\",\"franchise\":\"0005\",\"transaction\":\"14104|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590717487\",\"franchise\":\"0005\",\"transaction\":\"12625|253|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590716114\",\"franchise\":\"0014\",\"transaction\":\"13128|192|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590716114\",\"franchise\":\"0003\",\"transaction\":\"12626|167|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590715742\",\"franchise\":\"0013\",\"transaction\":\"13132|245|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590714077\",\"franchise\":\"0016\",\"transaction\":\"13163|181|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712941\",\"franchise\":\"0016\",\"transaction\":\"12186|112|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712932\",\"franchise\":\"0002\",\"transaction\":\"11675|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712923\",\"franchise\":\"0002\",\"transaction\":\"11675|191|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712912\",\"franchise\":\"0002\",\"transaction\":\"11675|181|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712887\",\"franchise\":\"0016\",\"transaction\":\"13163|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712865\",\"franchise\":\"0016\",\"transaction\":\"13128|189|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712836\",\"franchise\":\"0005\",\"transaction\":\"12801|188|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590712835\",\"franchise\":\"0009\",\"transaction\":\"12186|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590712816\",\"franchise\":\"0015\",\"transaction\":\"14079|240|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590711504\",\"franchise\":\"0003\",\"transaction\":\"12626|161|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590711290\",\"franchise\":\"0003\",\"transaction\":\"13604|300|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590710501\",\"franchise\":\"0002\",\"transaction\":\"14797|191|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590710483\",\"franchise\":\"0002\",\"transaction\":\"14802|260|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590710483\",\"franchise\":\"0002\",\"transaction\":\"11675|180|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590706853\",\"franchise\":\"0008\",\"transaction\":\"13593|225|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590704817\",\"franchise\":\"0005\",\"transaction\":\"12626|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590704803\",\"franchise\":\"0005\",\"transaction\":\"14802|251|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590704803\",\"franchise\":\"0014\",\"transaction\":\"12626|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590704748\",\"franchise\":\"0012\",\"transaction\":\"12652|211|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590704748\",\"franchise\":\"0014\",\"transaction\":\"12626|149|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590704748\",\"franchise\":\"0005\",\"transaction\":\"11675|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590704716\",\"franchise\":\"0015\",\"transaction\":\"14079|240|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590703616\",\"franchise\":\"0014\",\"transaction\":\"14797|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590703616\",\"franchise\":\"0014\",\"transaction\":\"11679|108|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702148\",\"franchise\":\"0012\",\"transaction\":\"12175|132|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702136\",\"franchise\":\"0016\",\"transaction\":\"12175|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702112\",\"franchise\":\"0010\",\"transaction\":\"13635|170|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702086\",\"franchise\":\"0014\",\"transaction\":\"13128|185|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702031\",\"franchise\":\"0014\",\"transaction\":\"12626|145|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702024\",\"franchise\":\"0014\",\"transaction\":\"12626|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702010\",\"franchise\":\"0009\",\"transaction\":\"11244|182|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590702001\",\"franchise\":\"0009\",\"transaction\":\"11244|181|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701994\",\"franchise\":\"0009\",\"transaction\":\"11244|180|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701975\",\"franchise\":\"0009\",\"transaction\":\"12186|105|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701955\",\"franchise\":\"0002\",\"transaction\":\"10271|118|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701922\",\"franchise\":\"0002\",\"transaction\":\"14102|170|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701907\",\"franchise\":\"0002\",\"transaction\":\"14797|170|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701879\",\"franchise\":\"0005\",\"transaction\":\"12801|188|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701550\",\"franchise\":\"0002\",\"transaction\":\"14802|250|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701095\",\"franchise\":\"0005\",\"transaction\":\"12801|181|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701084\",\"franchise\":\"0014\",\"transaction\":\"13131|209|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701055\",\"franchise\":\"0010\",\"transaction\":\"13635|163|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701043\",\"franchise\":\"0010\",\"transaction\":\"13163|172|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701026\",\"franchise\":\"0016\",\"transaction\":\"12175|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590701014\",\"franchise\":\"0012\",\"transaction\":\"14073|182|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590693933\",\"franchise\":\"0002\",\"transaction\":\"14797|144|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590693933\",\"franchise\":\"0012\",\"transaction\":\"14073|173|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590693933\",\"franchise\":\"0014\",\"transaction\":\"13131|202|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590693898\",\"franchise\":\"0012\",\"transaction\":\"14073|163|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590693898\",\"franchise\":\"0013\",\"transaction\":\"13132|245|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590693898\",\"franchise\":\"0014\",\"transaction\":\"13128|181|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692196\",\"franchise\":\"0002\",\"transaction\":\"14802|249|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692185\",\"franchise\":\"0002\",\"transaction\":\"14802|240|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692168\",\"franchise\":\"0015\",\"transaction\":\"14079|230|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692168\",\"franchise\":\"0005\",\"transaction\":\"13404|146|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692168\",\"franchise\":\"0005\",\"transaction\":\"13128|178|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692168\",\"franchise\":\"0009\",\"transaction\":\"12186|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692112\",\"franchise\":\"0002\",\"transaction\":\"14802|230|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692112\",\"franchise\":\"0015\",\"transaction\":\"14079|215|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590692112\",\"franchise\":\"0016\",\"transaction\":\"11675|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590689541\",\"franchise\":\"0002\",\"transaction\":\"10271|106|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590687281\",\"franchise\":\"0011\",\"transaction\":\"13299|192|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590687260\",\"franchise\":\"0011\",\"transaction\":\"11679|106|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590687210\",\"franchise\":\"0014\",\"transaction\":\"12626|124|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590687055\",\"franchise\":\"0016\",\"transaction\":\"12175|113|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590684323\",\"franchise\":\"0002\",\"transaction\":\"14102|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590684311\",\"franchise\":\"0007\",\"transaction\":\"11679|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590684299\",\"franchise\":\"0016\",\"transaction\":\"13163|158|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590684287\",\"franchise\":\"0002\",\"transaction\":\"14797|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590684261\",\"franchise\":\"0012\",\"transaction\":\"12652|210|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590683944\",\"franchise\":\"0009\",\"transaction\":\"13299|186|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590683922\",\"franchise\":\"0011\",\"transaction\":\"13299|185|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590683239\",\"franchise\":\"0002\",\"transaction\":\"14802|226|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590683239\",\"franchise\":\"0002\",\"transaction\":\"14102|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680874\",\"franchise\":\"0005\",\"transaction\":\"14802|217|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680874\",\"franchise\":\"0005\",\"transaction\":\"14102|116|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680874\",\"franchise\":\"0015\",\"transaction\":\"14079|200|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680874\",\"franchise\":\"0016\",\"transaction\":\"13163|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680874\",\"franchise\":\"0016\",\"transaction\":\"11675|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680870\",\"franchise\":\"0002\",\"transaction\":\"14102|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680747\",\"franchise\":\"0002\",\"transaction\":\"14102|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590680622\",\"franchise\":\"0008\",\"transaction\":\"13153|15|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590680400\",\"franchise\":\"0012\",\"transaction\":\"13635|158|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590679942\",\"franchise\":\"0016\",\"transaction\":\"13163|133|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590679875\",\"franchise\":\"0010\",\"transaction\":\"13163|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590679690\",\"franchise\":\"0002\",\"transaction\":\"14802|202|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590679690\",\"franchise\":\"0002\",\"transaction\":\"14797|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590679690\",\"franchise\":\"0008\",\"transaction\":\"11232|201|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590679456\",\"franchise\":\"0006\",\"transaction\":\"11679|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590677466\",\"franchise\":\"0012\",\"transaction\":\"13113|128|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590677433\",\"franchise\":\"0009\",\"transaction\":\"11244|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590677412\",\"franchise\":\"0009\",\"transaction\":\"11244|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676954\",\"franchise\":\"0011\",\"transaction\":\"11679|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676940\",\"franchise\":\"0016\",\"transaction\":\"14797|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676928\",\"franchise\":\"0009\",\"transaction\":\"12186|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676917\",\"franchise\":\"0016\",\"transaction\":\"12175|106|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676889\",\"franchise\":\"0013\",\"transaction\":\"14802|171|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676872\",\"franchise\":\"0016\",\"transaction\":\"13128|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676864\",\"franchise\":\"0011\",\"transaction\":\"11679|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676862\",\"franchise\":\"0014\",\"transaction\":\"13128|171|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676842\",\"franchise\":\"0016\",\"transaction\":\"13113|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676676\",\"franchise\":\"0011\",\"transaction\":\"14797|56|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676659\",\"franchise\":\"0011\",\"transaction\":\"11679|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676470\",\"franchise\":\"0012\",\"transaction\":\"12652|200|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676411\",\"franchise\":\"0012\",\"transaction\":\"14073|152|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676395\",\"franchise\":\"0001\",\"transaction\":\"14073|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676392\",\"franchise\":\"0008\",\"transaction\":\"11232|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676369\",\"franchise\":\"0008\",\"transaction\":\"11679|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590676357\",\"franchise\":\"0008\",\"transaction\":\"13153|5|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676271\",\"franchise\":\"0009\",\"transaction\":\"11244|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676149\",\"franchise\":\"0008\",\"transaction\":\"13635|157|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676125\",\"franchise\":\"0012\",\"transaction\":\"13635|156|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676121\",\"franchise\":\"0012\",\"transaction\":\"13635|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590676032\",\"franchise\":\"0006\",\"transaction\":\"14777|94|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675946\",\"franchise\":\"0009\",\"transaction\":\"12186|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675920\",\"franchise\":\"0014\",\"transaction\":\"12626|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675912\",\"franchise\":\"0009\",\"transaction\":\"11244|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590675693\",\"franchise\":\"0007\",\"transaction\":\"14797|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675670\",\"franchise\":\"0007\",\"transaction\":\"14797|45|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675661\",\"franchise\":\"0001\",\"transaction\":\"14073|148|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675632\",\"franchise\":\"0007\",\"transaction\":\"14797|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675464\",\"franchise\":\"0004\",\"transaction\":\"12625|251|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675384\",\"franchise\":\"0016\",\"transaction\":\"11232|155|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675366\",\"franchise\":\"0006\",\"transaction\":\"13153|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675340\",\"franchise\":\"0007\",\"transaction\":\"14797|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590675293\",\"franchise\":\"0016\",\"transaction\":\"12186|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675261\",\"franchise\":\"0007\",\"transaction\":\"12175|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675248\",\"franchise\":\"0013\",\"transaction\":\"14802|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675114\",\"franchise\":\"0006\",\"transaction\":\"12175|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675096\",\"franchise\":\"0016\",\"transaction\":\"12175|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675065\",\"franchise\":\"0012\",\"transaction\":\"13113|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590675028\",\"franchise\":\"0016\",\"transaction\":\"12175|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674791\",\"franchise\":\"0016\",\"transaction\":\"12175|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674695\",\"franchise\":\"0013\",\"transaction\":\"14802|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674679\",\"franchise\":\"0013\",\"transaction\":\"12175|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590674593\",\"franchise\":\"0016\",\"transaction\":\"14802|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674578\",\"franchise\":\"0016\",\"transaction\":\"12186|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674569\",\"franchise\":\"0005\",\"transaction\":\"12801|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674538\",\"franchise\":\"0005\",\"transaction\":\"12801|165|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674521\",\"franchise\":\"0005\",\"transaction\":\"12801|161|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674509\",\"franchise\":\"0005\",\"transaction\":\"12801|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674509\",\"franchise\":\"0016\",\"transaction\":\"11675|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674509\",\"franchise\":\"0016\",\"transaction\":\"11232|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674491\",\"franchise\":\"0005\",\"transaction\":\"12652|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674483\",\"franchise\":\"0005\",\"transaction\":\"12801|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674483\",\"franchise\":\"0005\",\"transaction\":\"11675|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674483\",\"franchise\":\"0005\",\"transaction\":\"11232|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674344\",\"franchise\":\"0014\",\"transaction\":\"14802|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590674324\",\"franchise\":\"0013\",\"transaction\":\"13404|144|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674324\",\"franchise\":\"0014\",\"transaction\":\"13128|161|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590674324\",\"franchise\":\"0014\",\"transaction\":\"12626|83|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590672687\",\"franchise\":\"0013\",\"transaction\":\"13404|134|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590672670\",\"franchise\":\"0013\",\"transaction\":\"13128|145|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590672537\",\"franchise\":\"0006\",\"transaction\":\"12626|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590672516\",\"franchise\":\"0003\",\"transaction\":\"13604|300|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590672516\",\"franchise\":\"0013\",\"transaction\":\"13132|234|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671528\",\"franchise\":\"0011\",\"transaction\":\"12626|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671513\",\"franchise\":\"0005\",\"transaction\":\"11675|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671501\",\"franchise\":\"0005\",\"transaction\":\"12801|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671492\",\"franchise\":\"0005\",\"transaction\":\"11232|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671426\",\"franchise\":\"0005\",\"transaction\":\"11675|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671419\",\"franchise\":\"0005\",\"transaction\":\"11675|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671399\",\"franchise\":\"0005\",\"transaction\":\"11675|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671319\",\"franchise\":\"0012\",\"transaction\":\"13113|124|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671260\",\"franchise\":\"0005\",\"transaction\":\"11675|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671212\",\"franchise\":\"0005\",\"transaction\":\"12801|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671197\",\"franchise\":\"0005\",\"transaction\":\"11232|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671124\",\"franchise\":\"0006\",\"transaction\":\"13153|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671110\",\"franchise\":\"0011\",\"transaction\":\"12626|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671097\",\"franchise\":\"0011\",\"transaction\":\"12626|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590671077\",\"franchise\":\"0006\",\"transaction\":\"12186|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669881\",\"franchise\":\"0011\",\"transaction\":\"12186|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590669746\",\"franchise\":\"0005\",\"transaction\":\"12801|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669723\",\"franchise\":\"0005\",\"transaction\":\"11232|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669720\",\"franchise\":\"0012\",\"transaction\":\"11232|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669700\",\"franchise\":\"0005\",\"transaction\":\"11675|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669700\",\"franchise\":\"0005\",\"transaction\":\"11232|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669670\",\"franchise\":\"0015\",\"transaction\":\"14079|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669663\",\"franchise\":\"0015\",\"transaction\":\"14079|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669653\",\"franchise\":\"0015\",\"transaction\":\"14079|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669636\",\"franchise\":\"0005\",\"transaction\":\"12801|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590669614\",\"franchise\":\"0003\",\"transaction\":\"13604|299|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669606\",\"franchise\":\"0003\",\"transaction\":\"13604|295|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669602\",\"franchise\":\"0015\",\"transaction\":\"14079|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590669597\",\"franchise\":\"0003\",\"transaction\":\"13604|294|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669585\",\"franchise\":\"0003\",\"transaction\":\"13604|289|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669571\",\"franchise\":\"0003\",\"transaction\":\"13604|279|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669559\",\"franchise\":\"0003\",\"transaction\":\"13604|275|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669537\",\"franchise\":\"0012\",\"transaction\":\"13153|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590669537\",\"franchise\":\"0003\",\"transaction\":\"11232|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590669361\",\"franchise\":\"0012\",\"transaction\":\"13113|122|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669275\",\"franchise\":\"0011\",\"transaction\":\"11675|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590669261\",\"franchise\":\"0011\",\"transaction\":\"12626|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590668591\",\"franchise\":\"0006\",\"transaction\":\"13113|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590668490\",\"franchise\":\"0006\",\"transaction\":\"11675|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590668402\",\"franchise\":\"0006\",\"transaction\":\"12626|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590668088\",\"franchise\":\"0003\",\"transaction\":\"13604|271|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590667289\",\"franchise\":\"0011\",\"transaction\":\"13299|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590666953\",\"franchise\":\"0004\",\"transaction\":\"12626|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590666761\",\"franchise\":\"0008\",\"transaction\":\"13131|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590666741\",\"franchise\":\"0014\",\"transaction\":\"13404|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590666741\",\"franchise\":\"0014\",\"transaction\":\"13132|221|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590666741\",\"franchise\":\"0014\",\"transaction\":\"13128|122|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590666741\",\"franchise\":\"0012\",\"transaction\":\"12625|222|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590666030\",\"franchise\":\"0005\",\"transaction\":\"10271|103|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590665998\",\"franchise\":\"0005\",\"transaction\":\"12652|192|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590665984\",\"franchise\":\"0005\",\"transaction\":\"13604|261|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590665896\",\"franchise\":\"0013\",\"transaction\":\"13604|260|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590663672\",\"franchise\":\"0012\",\"transaction\":\"12625|205|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590663653\",\"franchise\":\"0008\",\"transaction\":\"13593|225|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590663531\",\"franchise\":\"0013\",\"transaction\":\"13132|220|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590663531\",\"franchise\":\"0008\",\"transaction\":\"13131|177|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590663531\",\"franchise\":\"0008\",\"transaction\":\"13128|112|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590663531\",\"franchise\":\"0012\",\"transaction\":\"13113|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590659249\",\"franchise\":\"0014\",\"transaction\":\"13128|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590659093\",\"franchise\":\"0001\",\"transaction\":\"10271|102|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590659083\",\"franchise\":\"0012\",\"transaction\":\"13113|113|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590659041\",\"franchise\":\"0013\",\"transaction\":\"13404|119|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590659030\",\"franchise\":\"0013\",\"transaction\":\"13404|117|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590645979\",\"franchise\":\"0001\",\"transaction\":\"14073|147|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590645979\",\"franchise\":\"0012\",\"transaction\":\"13635|142|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590645979\",\"franchise\":\"0013\",\"transaction\":\"13404|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590645979\",\"franchise\":\"0009\",\"transaction\":\"13299|169|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590645979\",\"franchise\":\"0010\",\"transaction\":\"12652|189|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590645447\",\"franchise\":\"0010\",\"transaction\":\"10271|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590645431\",\"franchise\":\"0010\",\"transaction\":\"10271|99|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590644801\",\"franchise\":\"0012\",\"transaction\":\"13113|112|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590644786\",\"franchise\":\"0012\",\"transaction\":\"13116|250|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590640876\",\"franchise\":\"0013\",\"transaction\":\"13604|251|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590640699\",\"franchise\":\"0010\",\"transaction\":\"10271|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590640686\",\"franchise\":\"0012\",\"transaction\":\"13635|139|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590640670\",\"franchise\":\"0010\",\"transaction\":\"12652|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590640310\",\"franchise\":\"0004\",\"transaction\":\"14803|230|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590640127\",\"franchise\":\"0004\",\"transaction\":\"14803|230|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590640104\",\"franchise\":\"0004\",\"transaction\":\"13130|349|\",\"type\":\"AUCTION_WON\"},{\"timestamp\":\"1590640061\",\"franchise\":\"0004\",\"transaction\":\"13130|349|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590640031\",\"franchise\":\"0004\",\"transaction\":\"13130|345|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639901\",\"franchise\":\"0005\",\"transaction\":\"13604|245|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639838\",\"franchise\":\"0009\",\"transaction\":\"13299|165|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639830\",\"franchise\":\"0009\",\"transaction\":\"13299|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639828\",\"franchise\":\"0013\",\"transaction\":\"13404|112|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639816\",\"franchise\":\"0009\",\"transaction\":\"13299|155|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639808\",\"franchise\":\"0009\",\"transaction\":\"13299|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639800\",\"franchise\":\"0014\",\"transaction\":\"13404|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639777\",\"franchise\":\"0013\",\"transaction\":\"13132|201|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639734\",\"franchise\":\"0006\",\"transaction\":\"13113|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639655\",\"franchise\":\"0004\",\"transaction\":\"14803|220|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639614\",\"franchise\":\"0004\",\"transaction\":\"13130|340|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639537\",\"franchise\":\"0004\",\"transaction\":\"13130|335|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590639093\",\"franchise\":\"0004\",\"transaction\":\"13130|329|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590638936\",\"franchise\":\"0004\",\"transaction\":\"13130|319|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590638830\",\"franchise\":\"0004\",\"transaction\":\"13130|305|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590638699\",\"franchise\":\"0004\",\"transaction\":\"13130|299|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590638686\",\"franchise\":\"0004\",\"transaction\":\"13130|280|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590638564\",\"franchise\":\"0004\",\"transaction\":\"14803|205|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590638547\",\"franchise\":\"0004\",\"transaction\":\"14803|202|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590637176\",\"franchise\":\"0012\",\"transaction\":\"14777|92|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590637116\",\"franchise\":\"0009\",\"transaction\":\"13299|141|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590636712\",\"franchise\":\"0003\",\"transaction\":\"10271|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590635525\",\"franchise\":\"0015\",\"transaction\":\"13131|168|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590633901\",\"franchise\":\"0003\",\"transaction\":\"13131|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590633892\",\"franchise\":\"0012\",\"transaction\":\"13635|131|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590633792\",\"franchise\":\"0012\",\"transaction\":\"12625|201|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590633624\",\"franchise\":\"0009\",\"transaction\":\"13299|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590633260\",\"franchise\":\"0014\",\"transaction\":\"13404|103|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590633218\",\"franchise\":\"0014\",\"transaction\":\"14073|143|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590633218\",\"franchise\":\"0003\",\"transaction\":\"13131|146|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590631613\",\"franchise\":\"0006\",\"transaction\":\"14777|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590631556\",\"franchise\":\"0003\",\"transaction\":\"13131|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590631465\",\"franchise\":\"0012\",\"transaction\":\"13299|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590630316\",\"franchise\":\"0016\",\"transaction\":\"13299|95|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590630298\",\"franchise\":\"0016\",\"transaction\":\"13299|94|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590630287\",\"franchise\":\"0016\",\"transaction\":\"13299|93|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590630001\",\"franchise\":\"0016\",\"transaction\":\"13299|92|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590629971\",\"franchise\":\"0016\",\"transaction\":\"13299|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590629949\",\"franchise\":\"0016\",\"transaction\":\"13299|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590629835\",\"franchise\":\"0016\",\"transaction\":\"13299|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590627947\",\"franchise\":\"0003\",\"transaction\":\"13131|110|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590627580\",\"franchise\":\"0004\",\"transaction\":\"13130|275|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626757\",\"franchise\":\"0004\",\"transaction\":\"14803|199|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626746\",\"franchise\":\"0004\",\"transaction\":\"14803|190|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626735\",\"franchise\":\"0004\",\"transaction\":\"14803|181|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626724\",\"franchise\":\"0004\",\"transaction\":\"13130|274|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626716\",\"franchise\":\"0004\",\"transaction\":\"13130|270|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626705\",\"franchise\":\"0004\",\"transaction\":\"13130|261|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626673\",\"franchise\":\"0005\",\"transaction\":\"10271|89|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626574\",\"franchise\":\"0004\",\"transaction\":\"13130|260|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626557\",\"franchise\":\"0004\",\"transaction\":\"14803|180|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626530\",\"franchise\":\"0009\",\"transaction\":\"12652|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626495\",\"franchise\":\"0009\",\"transaction\":\"12652|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626479\",\"franchise\":\"0005\",\"transaction\":\"13604|241|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626467\",\"franchise\":\"0003\",\"transaction\":\"10271|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626434\",\"franchise\":\"0009\",\"transaction\":\"12652|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626420\",\"franchise\":\"0003\",\"transaction\":\"10271|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626401\",\"franchise\":\"0004\",\"transaction\":\"13130|250|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626388\",\"franchise\":\"0013\",\"transaction\":\"13604|240|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626366\",\"franchise\":\"0014\",\"transaction\":\"12625|180|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626328\",\"franchise\":\"0001\",\"transaction\":\"13635|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626328\",\"franchise\":\"0009\",\"transaction\":\"12652|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626155\",\"franchise\":\"0012\",\"transaction\":\"14073|136|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626102\",\"franchise\":\"0013\",\"transaction\":\"13604|212|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626078\",\"franchise\":\"0009\",\"transaction\":\"12652|90|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590626066\",\"franchise\":\"0009\",\"transaction\":\"12652|77|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590625952\",\"franchise\":\"0009\",\"transaction\":\"12652|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590624915\",\"franchise\":\"0013\",\"transaction\":\"13604|206|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590624903\",\"franchise\":\"0004\",\"transaction\":\"13130|249|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590624552\",\"franchise\":\"0006\",\"transaction\":\"13113|104|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590623977\",\"franchise\":\"0016\",\"transaction\":\"13593|223|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590623968\",\"franchise\":\"0012\",\"transaction\":\"13116|250|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590623942\",\"franchise\":\"0016\",\"transaction\":\"13132|200|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590623931\",\"franchise\":\"0015\",\"transaction\":\"13132|195|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590621715\",\"franchise\":\"0003\",\"transaction\":\"13131|102|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590621680\",\"franchise\":\"0014\",\"transaction\":\"13131|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590621680\",\"franchise\":\"0003\",\"transaction\":\"10271|78|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590616919\",\"franchise\":\"0014\",\"transaction\":\"13131|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590616546\",\"franchise\":\"0014\",\"transaction\":\"12625|176|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590616506\",\"franchise\":\"0012\",\"transaction\":\"13131|41|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590614486\",\"franchise\":\"0001\",\"transaction\":\"13635|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590614414\",\"franchise\":\"0006\",\"transaction\":\"13131|23|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590614396\",\"franchise\":\"0001\",\"transaction\":\"13404|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590614357\",\"franchise\":\"0004\",\"transaction\":\"13130|222|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590613965\",\"franchise\":\"0001\",\"transaction\":\"13131|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590612838\",\"franchise\":\"0011\",\"transaction\":\"13113|102|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590612820\",\"franchise\":\"0008\",\"transaction\":\"13113|99|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590612777\",\"franchise\":\"0011\",\"transaction\":\"14777|89|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590612709\",\"franchise\":\"0011\",\"transaction\":\"14073|135|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590612648\",\"franchise\":\"0015\",\"transaction\":\"13132|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590611650\",\"franchise\":\"0012\",\"transaction\":\"13116|225|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590611448\",\"franchise\":\"0005\",\"transaction\":\"13635|121|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590611432\",\"franchise\":\"0004\",\"transaction\":\"14803|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590611421\",\"franchise\":\"0004\",\"transaction\":\"14803|160|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590611411\",\"franchise\":\"0004\",\"transaction\":\"14803|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606796\",\"franchise\":\"0010\",\"transaction\":\"13635|116|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606788\",\"franchise\":\"0012\",\"transaction\":\"14073|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606788\",\"franchise\":\"0015\",\"transaction\":\"13132|165|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606783\",\"franchise\":\"0014\",\"transaction\":\"13404|97|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606741\",\"franchise\":\"0004\",\"transaction\":\"14803|133|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606741\",\"franchise\":\"0012\",\"transaction\":\"14073|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606741\",\"franchise\":\"0014\",\"transaction\":\"13604|203|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606741\",\"franchise\":\"0014\",\"transaction\":\"13404|96|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590606741\",\"franchise\":\"0014\",\"transaction\":\"12625|152|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590605559\",\"franchise\":\"0004\",\"transaction\":\"13130|220|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590605172\",\"franchise\":\"0015\",\"transaction\":\"13132|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590605119\",\"franchise\":\"0015\",\"transaction\":\"13132|134|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590604172\",\"franchise\":\"0008\",\"transaction\":\"14777|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590604157\",\"franchise\":\"0012\",\"transaction\":\"12625|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590604151\",\"franchise\":\"0012\",\"transaction\":\"12625|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590604142\",\"franchise\":\"0012\",\"transaction\":\"12625|77|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590604133\",\"franchise\":\"0012\",\"transaction\":\"12625|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590603002\",\"franchise\":\"0008\",\"transaction\":\"14777|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590603002\",\"franchise\":\"0012\",\"transaction\":\"13604|191|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590603002\",\"franchise\":\"0008\",\"transaction\":\"13113|86|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601729\",\"franchise\":\"0006\",\"transaction\":\"10271|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601723\",\"franchise\":\"0014\",\"transaction\":\"10271|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601710\",\"franchise\":\"0012\",\"transaction\":\"12625|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601630\",\"franchise\":\"0014\",\"transaction\":\"13113|80|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601623\",\"franchise\":\"0014\",\"transaction\":\"13113|76|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601609\",\"franchise\":\"0012\",\"transaction\":\"12625|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601590\",\"franchise\":\"0012\",\"transaction\":\"12625|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601564\",\"franchise\":\"0012\",\"transaction\":\"13116|221|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601542\",\"franchise\":\"0012\",\"transaction\":\"12625|65|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601515\",\"franchise\":\"0008\",\"transaction\":\"13116|206|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601512\",\"franchise\":\"0006\",\"transaction\":\"12625|63|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590601499\",\"franchise\":\"0012\",\"transaction\":\"13604|186|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590600105\",\"franchise\":\"0015\",\"transaction\":\"12625|61|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599849\",\"franchise\":\"0014\",\"transaction\":\"10271|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599818\",\"franchise\":\"0006\",\"transaction\":\"12625|3|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599804\",\"franchise\":\"0007\",\"transaction\":\"13404|94|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599794\",\"franchise\":\"0010\",\"transaction\":\"13635|115|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599791\",\"franchise\":\"0006\",\"transaction\":\"12625|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599785\",\"franchise\":\"0015\",\"transaction\":\"13132|126|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599781\",\"franchise\":\"0006\",\"transaction\":\"14777|59|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599774\",\"franchise\":\"0014\",\"transaction\":\"13604|150|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599773\",\"franchise\":\"0014\",\"transaction\":\"13113|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599756\",\"franchise\":\"0014\",\"transaction\":\"13604|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590599723\",\"franchise\":\"0007\",\"transaction\":\"12625|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590599053\",\"franchise\":\"0004\",\"transaction\":\"13593|221|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598127\",\"franchise\":\"0004\",\"transaction\":\"14803|111|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598127\",\"franchise\":\"0014\",\"transaction\":\"14777|55|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598127\",\"franchise\":\"0014\",\"transaction\":\"13404|91|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598127\",\"franchise\":\"0015\",\"transaction\":\"13132|125|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598127\",\"franchise\":\"0004\",\"transaction\":\"13130|190|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598127\",\"franchise\":\"0014\",\"transaction\":\"10271|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598085\",\"franchise\":\"0004\",\"transaction\":\"14803|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598085\",\"franchise\":\"0014\",\"transaction\":\"13604|101|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598085\",\"franchise\":\"0010\",\"transaction\":\"13404|85|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598085\",\"franchise\":\"0004\",\"transaction\":\"13130|185|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590598085\",\"franchise\":\"0014\",\"transaction\":\"13113|72|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590597420\",\"franchise\":\"0012\",\"transaction\":\"14777|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590597410\",\"franchise\":\"0004\",\"transaction\":\"14803|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590597410\",\"franchise\":\"0010\",\"transaction\":\"13404|60|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590597378\",\"franchise\":\"0004\",\"transaction\":\"14803|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590597378\",\"franchise\":\"0005\",\"transaction\":\"13604|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590597095\",\"franchise\":\"0004\",\"transaction\":\"14803|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590597079\",\"franchise\":\"0005\",\"transaction\":\"13604|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590596904\",\"franchise\":\"0004\",\"transaction\":\"13130|151|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590596633\",\"franchise\":\"0012\",\"transaction\":\"14777|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590596606\",\"franchise\":\"0013\",\"transaction\":\"13130|134|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590596578\",\"franchise\":\"0010\",\"transaction\":\"13635|112|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590596559\",\"franchise\":\"0012\",\"transaction\":\"14073|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590596559\",\"franchise\":\"0010\",\"transaction\":\"13635|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590596174\",\"franchise\":\"0013\",\"transaction\":\"14777|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590595848\",\"franchise\":\"0003\",\"transaction\":\"14777|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590595664\",\"franchise\":\"0010\",\"transaction\":\"14073|81|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590595650\",\"franchise\":\"0010\",\"transaction\":\"13404|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590595637\",\"franchise\":\"0010\",\"transaction\":\"10271|66|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590595622\",\"franchise\":\"0010\",\"transaction\":\"13635|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590595040\",\"franchise\":\"0013\",\"transaction\":\"13130|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590594963\",\"franchise\":\"0008\",\"transaction\":\"13593|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590594836\",\"franchise\":\"0008\",\"transaction\":\"13116|175|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590594816\",\"franchise\":\"0008\",\"transaction\":\"13116|155|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590594074\",\"franchise\":\"0006\",\"transaction\":\"13404|33|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590594074\",\"franchise\":\"0008\",\"transaction\":\"10271|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593981\",\"franchise\":\"0008\",\"transaction\":\"13116|140|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593940\",\"franchise\":\"0008\",\"transaction\":\"13116|130|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593859\",\"franchise\":\"0008\",\"transaction\":\"10271|40|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593854\",\"franchise\":\"0008\",\"transaction\":\"13593|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593854\",\"franchise\":\"0013\",\"transaction\":\"13404|31|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593854\",\"franchise\":\"0015\",\"transaction\":\"13132|100|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593854\",\"franchise\":\"0008\",\"transaction\":\"13116|120|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593854\",\"franchise\":\"0013\",\"transaction\":\"13113|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593843\",\"franchise\":\"0008\",\"transaction\":\"13116|105|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593722\",\"franchise\":\"0013\",\"transaction\":\"13130|70|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593702\",\"franchise\":\"0012\",\"transaction\":\"14073|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593702\",\"franchise\":\"0008\",\"transaction\":\"13593|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593702\",\"franchise\":\"0008\",\"transaction\":\"13116|69|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593702\",\"franchise\":\"0014\",\"transaction\":\"13113|11|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593680\",\"franchise\":\"0014\",\"transaction\":\"13130|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590593572\",\"franchise\":\"0008\",\"transaction\":\"10271|35|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593555\",\"franchise\":\"0008\",\"transaction\":\"13116|51|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593549\",\"franchise\":\"0008\",\"transaction\":\"13593|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590593544\",\"franchise\":\"0013\",\"transaction\":\"13113|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590593240\",\"franchise\":\"0006\",\"transaction\":\"13404|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593231\",\"franchise\":\"0006\",\"transaction\":\"13116|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593201\",\"franchise\":\"0012\",\"transaction\":\"14073|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593201\",\"franchise\":\"0011\",\"transaction\":\"10271|30|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593177\",\"franchise\":\"0012\",\"transaction\":\"14073|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593177\",\"franchise\":\"0011\",\"transaction\":\"10271|20|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593151\",\"franchise\":\"0011\",\"transaction\":\"10271|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593143\",\"franchise\":\"0012\",\"transaction\":\"14073|10|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593143\",\"franchise\":\"0006\",\"transaction\":\"13404|2|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590593140\",\"franchise\":\"0011\",\"transaction\":\"10271|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590593126\",\"franchise\":\"0006\",\"transaction\":\"13116|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590592598\",\"franchise\":\"0002\",\"transaction\":\"13404|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590592503\",\"franchise\":\"0015\",\"transaction\":\"13132|75|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590592487\",\"franchise\":\"0015\",\"transaction\":\"13132|71|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590592456\",\"franchise\":\"0015\",\"transaction\":\"13132|50|\",\"type\":\"AUCTION_BID\"},{\"timestamp\":\"1590591578\",\"franchise\":\"0012\",\"transaction\":\"14073|1|\",\"type\":\"AUCTION_INIT\"},{\"timestamp\":\"1590590603\",\"franchise\":\"0015\",\"transaction\":\"13132|1|\",\"type\":\"AUCTION_INIT\"},{\"activated\":\"13637,14239,\",\"timestamp\":\"1585354187\",\"franchise\":\"0013\",\"deactivated\":\"\",\"type\":\"IR\"},{\"timestamp\":\"1585354187\",\"franchise\":\"0013\",\"transaction\":\"|12665,13776,\",\"type\":\"FREE_AGENT\"}]},\"encoding\":\"utf-8\"}"), 
-    date = structure(1595813465, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0.133744, namelookup = 0.000122, 
-    connect = 0.02758, pretransfer = 0.096261, starttransfer = 1.090464, 
-    total = 1.121069)), class = "response")
+    date = structure(1595849650, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.1377, namelookup = 0.075111, 
+    connect = 0.103176, pretransfer = 0.170519, starttransfer = 1.080644, 
+    total = 1.114241)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-51a867.R b/tests/testthat/api.myfantasyleague.com/2020/export-51a867.R
index 173e4b8a..2d9c3ab1 100644
--- a/tests/testthat/api.myfantasyleague.com/2020/export-51a867.R
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-51a867.R
@@ -1,20 +1,24 @@
-structure(list(url = "https://api.myfantasyleague.com/2020/export?TYPE=draftResults&L=65443&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Fri, 10 Jul 2020 13:38:07 GMT", 
+structure(list(url = "https://www73.myfantasyleague.com/2020/export?TYPE=draftResults&L=65443&JSON=1", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:29:05 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
-        `content-length` = "20838", `content-type` = "application/json; charset=utf-8", 
-        targethost = "www73"), class = c("insensitive", "list"
-    )), all_headers = list(list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Fri, 10 Jul 2020 13:38:07 GMT", 
+        `content-length` = "27102", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+    "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:05 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            location = "https://www73.myfantasyleague.com/2020/export?TYPE=draftResults&L=65443&JSON=1", 
+            `content-length` = "0", targethost = "www70"), class = c("insensitive", 
+        "list"))), list(status = 200L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:05 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
-            `content-length` = "20838", `content-type` = "application/json; charset=utf-8", 
-            targethost = "www73"), class = c("insensitive", "list"
-        )))), cookies = structure(list(domain = logical(0), flag = logical(0), 
-        path = logical(0), secure = logical(0), expiration = structure(numeric(0), class = c("POSIXct", 
+            `content-length` = "27102", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+        "list")))), cookies = structure(list(domain = logical(0), 
+        flag = logical(0), path = logical(0), secure = logical(0), 
+        expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
-    content = charToRaw("{\"draftResults\":{\"draftUnit\":[{\"unit\":\"DIVISION00\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044005\",\"franchise\":\"0001\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594044005\",\"franchise\":\"0009\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045551\",\"franchise\":\"0003\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594045551\",\"franchise\":\"0002\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045551\",\"franchise\":\"0007\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045605\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594049693\",\"franchise\":\"0006\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594053069\",\"franchise\":\"0004\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594054539\",\"franchise\":\"0008\",\"round\":\"01\",\"player\":\"4925\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594054539\",\"franchise\":\"0011\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594054539\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"13113\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067937\",\"franchise\":\"0005\",\"round\":\"01\",\"player\":\"11675\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594068367\",\"franchise\":\"0005\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594068367\",\"franchise\":\"0012\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594068367\",\"franchise\":\"0011\",\"round\":\"02\",\"player\":\"12626\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594070060\",\"franchise\":\"0008\",\"round\":\"02\",\"player\":\"13299\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594072636\",\"franchise\":\"0004\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594073183\",\"franchise\":\"0006\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594073394\",\"franchise\":\"0010\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594073614\",\"franchise\":\"0007\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594075438\",\"franchise\":\"0002\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594076114\",\"franchise\":\"0003\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594076114\",\"franchise\":\"0009\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594076114\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"13319\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594076114\",\"franchise\":\"0001\",\"round\":\"03\",\"player\":\"7394\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594076949\",\"franchise\":\"0009\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594077561\",\"franchise\":\"0003\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594078005\",\"franchise\":\"0002\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594078005\",\"franchise\":\"0007\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594078252\",\"franchise\":\"0010\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594079127\",\"franchise\":\"0006\",\"round\":\"03\",\"player\":\"14802\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594082847\",\"franchise\":\"0004\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594083190\",\"franchise\":\"0008\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594084029\",\"franchise\":\"0011\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594084029\",\"franchise\":\"0012\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594123328\",\"franchise\":\"0005\",\"round\":\"03\",\"player\":\"11679\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594123388\",\"franchise\":\"0005\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594123388\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"9099\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594123388\",\"franchise\":\"0011\",\"round\":\"04\",\"player\":\"14803\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594123388\",\"franchise\":\"0008\",\"round\":\"04\",\"player\":\"12263\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594125019\",\"franchise\":\"0004\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594134889\",\"franchise\":\"0006\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594136900\",\"franchise\":\"0010\",\"round\":\"04\",\"player\":\"13589\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594136900\",\"franchise\":\"0007\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594139268\",\"franchise\":\"0002\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594144098\",\"franchise\":\"0003\",\"round\":\"04\",\"player\":\"14799\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594144179\",\"franchise\":\"0009\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594144179\",\"franchise\":\"0001\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594150420\",\"franchise\":\"0001\",\"round\":\"05\",\"player\":\"13156\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594150420\",\"franchise\":\"0009\",\"round\":\"05\",\"player\":\"7836\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594150964\",\"franchise\":\"0003\",\"round\":\"05\",\"player\":\"14059\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594151601\",\"franchise\":\"0002\",\"round\":\"05\",\"player\":\"11671\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594151894\",\"franchise\":\"0007\",\"round\":\"05\",\"player\":\"10700\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594152121\",\"franchise\":\"0010\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594153012\",\"franchise\":\"0006\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594154541\",\"franchise\":\"0004\",\"round\":\"05\",\"player\":\"13146\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594155359\",\"franchise\":\"0008\",\"round\":\"05\",\"player\":\"13668\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594155359\",\"franchise\":\"0011\",\"round\":\"05\",\"player\":\"11228\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594155359\",\"franchise\":\"0012\",\"round\":\"05\",\"player\":\"13164\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594156761\",\"franchise\":\"0005\",\"round\":\"05\",\"player\":\"12447\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594156832\",\"franchise\":\"0005\",\"round\":\"06\",\"player\":\"14102\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594157007\",\"franchise\":\"0012\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594158567\",\"franchise\":\"0011\",\"round\":\"06\",\"player\":\"13364\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594158567\",\"franchise\":\"0008\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594162940\",\"franchise\":\"0004\",\"round\":\"06\",\"player\":\"14057\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594163354\",\"franchise\":\"0006\",\"round\":\"06\",\"player\":\"13590\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594163558\",\"franchise\":\"0010\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594163558\",\"franchise\":\"0007\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594165252\",\"franchise\":\"0002\",\"round\":\"06\",\"player\":\"13629\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594165943\",\"franchise\":\"0003\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594167282\",\"franchise\":\"0009\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594167282\",\"franchise\":\"0001\",\"round\":\"06\",\"player\":\"11747\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594167282\",\"franchise\":\"0001\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594167405\",\"franchise\":\"0009\",\"round\":\"07\",\"player\":\"13605\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594167560\",\"franchise\":\"0003\",\"round\":\"07\",\"player\":\"13189\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594168622\",\"franchise\":\"0002\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594168696\",\"franchise\":\"0007\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594169516\",\"franchise\":\"0010\",\"round\":\"07\",\"player\":\"9902\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594170796\",\"franchise\":\"0006\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594172486\",\"franchise\":\"0004\",\"round\":\"07\",\"player\":\"10261\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594173383\",\"franchise\":\"0008\",\"round\":\"07\",\"player\":\"12186\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594173646\",\"franchise\":\"0011\",\"round\":\"07\",\"player\":\"12611\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594173646\",\"franchise\":\"0012\",\"round\":\"07\",\"player\":\"12676\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594174012\",\"franchise\":\"0005\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594174075\",\"franchise\":\"0005\",\"round\":\"08\",\"player\":\"12176\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594179438\",\"franchise\":\"0012\",\"round\":\"08\",\"player\":\"10729\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594179438\",\"franchise\":\"0011\",\"round\":\"08\",\"player\":\"11760\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594185694\",\"franchise\":\"0008\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594185694\",\"franchise\":\"0004\",\"round\":\"08\",\"player\":\"10697\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594185694\",\"franchise\":\"0006\",\"round\":\"08\",\"player\":\"11680\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594186471\",\"franchise\":\"0010\",\"round\":\"08\",\"player\":\"10273\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594186471\",\"franchise\":\"0007\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594187163\",\"franchise\":\"0002\",\"round\":\"08\",\"player\":\"13138\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594209371\",\"franchise\":\"0003\",\"round\":\"08\",\"player\":\"10738\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594209426\",\"franchise\":\"0009\",\"round\":\"08\",\"player\":\"14105\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594209426\",\"franchise\":\"0001\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594219048\",\"franchise\":\"0001\",\"round\":\"09\",\"player\":\"9474\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594219048\",\"franchise\":\"0009\",\"round\":\"09\",\"player\":\"13672\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594219446\",\"franchise\":\"0003\",\"round\":\"09\",\"player\":\"14777\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594221769\",\"franchise\":\"0002\",\"round\":\"09\",\"player\":\"13680\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594221797\",\"franchise\":\"0007\",\"round\":\"09\",\"player\":\"11674\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594222119\",\"franchise\":\"0010\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594222119\",\"franchise\":\"0006\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594226709\",\"franchise\":\"0004\",\"round\":\"09\",\"player\":\"14839\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594228103\",\"franchise\":\"0008\",\"round\":\"09\",\"player\":\"11644\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594232128\",\"franchise\":\"0011\",\"round\":\"09\",\"player\":\"14067\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594232128\",\"franchise\":\"0012\",\"round\":\"09\",\"player\":\"12677\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233202\",\"franchise\":\"0005\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594233259\",\"franchise\":\"0005\",\"round\":\"10\",\"player\":\"11640\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594233259\",\"franchise\":\"0012\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233259\",\"franchise\":\"0011\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594234294\",\"franchise\":\"0008\",\"round\":\"10\",\"player\":\"14138\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594234414\",\"franchise\":\"0004\",\"round\":\"10\",\"player\":\"14137\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594234414\",\"franchise\":\"0006\",\"round\":\"10\",\"player\":\"9662\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594234944\",\"franchise\":\"0010\",\"round\":\"10\",\"player\":\"13678\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594235012\",\"franchise\":\"0007\",\"round\":\"10\",\"player\":\"14832\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594235659\",\"franchise\":\"0002\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594235659\",\"franchise\":\"0003\",\"round\":\"10\",\"player\":\"14810\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594236950\",\"franchise\":\"0009\",\"round\":\"10\",\"player\":\"14058\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594243341\",\"franchise\":\"0001\",\"round\":\"10\",\"player\":\"12152\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594246074\",\"franchise\":\"0001\",\"round\":\"11\",\"player\":\"12658\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594246074\",\"franchise\":\"0009\",\"round\":\"11\",\"player\":\"12647\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594246074\",\"franchise\":\"0003\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594248167\",\"franchise\":\"0002\",\"round\":\"11\",\"player\":\"13606\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594248644\",\"franchise\":\"0007\",\"round\":\"11\",\"player\":\"14208\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594248876\",\"franchise\":\"0010\",\"round\":\"11\",\"player\":\"13607\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594249886\",\"franchise\":\"0006\",\"round\":\"11\",\"player\":\"8687\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594257812\",\"franchise\":\"0004\",\"round\":\"11\",\"player\":\"14122\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594257812\",\"franchise\":\"0008\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594257812\",\"franchise\":\"0011\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594257812\",\"franchise\":\"0012\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594257847\",\"franchise\":\"0005\",\"round\":\"11\",\"player\":\"13614\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594258423\",\"franchise\":\"0005\",\"round\":\"12\",\"player\":\"11695\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594258423\",\"franchise\":\"0012\",\"round\":\"12\",\"player\":\"13633\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594258745\",\"franchise\":\"0011\",\"round\":\"12\",\"player\":\"14136\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594258745\",\"franchise\":\"0008\",\"round\":\"12\",\"player\":\"13290\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0004\",\"round\":\"12\",\"player\":\"14805\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594298487\",\"franchise\":\"0006\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0010\",\"round\":\"12\",\"player\":\"14113\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0007\",\"round\":\"12\",\"player\":\"14141\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0002\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0003\",\"round\":\"12\",\"player\":\"9918\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594301429\",\"franchise\":\"0009\",\"round\":\"12\",\"player\":\"13154\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594303505\",\"franchise\":\"0001\",\"round\":\"12\",\"player\":\"11670\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303570\",\"franchise\":\"0001\",\"round\":\"13\",\"player\":\"10413\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594304569\",\"franchise\":\"0009\",\"round\":\"13\",\"player\":\"9988\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594304569\",\"franchise\":\"0003\",\"round\":\"13\",\"player\":\"11390\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594308035\",\"franchise\":\"0002\",\"round\":\"13\",\"player\":\"13679\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594308035\",\"franchise\":\"0007\",\"round\":\"13\",\"player\":\"14085\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594308961\",\"franchise\":\"0010\",\"round\":\"13\",\"player\":\"11783\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594308961\",\"franchise\":\"0006\",\"round\":\"13\",\"player\":\"13236\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313054\",\"franchise\":\"0004\",\"round\":\"13\",\"player\":\"14833\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594313054\",\"franchise\":\"0008\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313054\",\"franchise\":\"0011\",\"round\":\"13\",\"player\":\"13814\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313054\",\"franchise\":\"0012\",\"round\":\"13\",\"player\":\"8062\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594315799\",\"franchise\":\"0005\",\"round\":\"13\",\"player\":\"9831\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594316153\",\"franchise\":\"0005\",\"round\":\"14\",\"player\":\"12197\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594317476\",\"franchise\":\"0012\",\"round\":\"14\",\"player\":\"14140\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594317476\",\"franchise\":\"0011\",\"round\":\"14\",\"player\":\"13234\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594318338\",\"franchise\":\"0008\",\"round\":\"14\",\"player\":\"14087\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594321745\",\"franchise\":\"0004\",\"round\":\"14\",\"player\":\"14834\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594322122\",\"franchise\":\"0006\",\"round\":\"14\",\"player\":\"13188\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594322696\",\"franchise\":\"0010\",\"round\":\"14\",\"player\":\"14101\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594322696\",\"franchise\":\"0007\",\"round\":\"14\",\"player\":\"13639\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594323625\",\"franchise\":\"0002\",\"round\":\"14\",\"player\":\"14836\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594323625\",\"franchise\":\"0003\",\"round\":\"14\",\"player\":\"10699\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594324554\",\"franchise\":\"0009\",\"round\":\"14\",\"player\":\"14840\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594327094\",\"franchise\":\"0001\",\"round\":\"14\",\"player\":\"10308\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594327162\",\"franchise\":\"0001\",\"round\":\"15\",\"player\":\"10312\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594327348\",\"franchise\":\"0009\",\"round\":\"15\",\"player\":\"14807\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594327348\",\"franchise\":\"0003\",\"round\":\"15\",\"player\":\"14126\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327720\",\"franchise\":\"0002\",\"round\":\"15\",\"player\":\"14778\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594328142\",\"franchise\":\"0007\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594328891\",\"franchise\":\"0010\",\"round\":\"15\",\"player\":\"12157\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594330980\",\"franchise\":\"0006\",\"round\":\"15\",\"player\":\"14123\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594331061\",\"franchise\":\"0004\",\"round\":\"15\",\"player\":\"13622\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594334567\",\"franchise\":\"0008\",\"round\":\"15\",\"player\":\"14808\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594334567\",\"franchise\":\"0011\",\"round\":\"15\",\"player\":\"11186\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594334567\",\"franchise\":\"0012\",\"round\":\"15\",\"player\":\"12930\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594335485\",\"franchise\":\"0005\",\"round\":\"15\",\"player\":\"11193\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594335576\",\"franchise\":\"0005\",\"round\":\"16\",\"player\":\"13157\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594335576\",\"franchise\":\"0012\",\"round\":\"16\",\"player\":\"11660\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594335576\",\"franchise\":\"0011\",\"round\":\"16\",\"player\":\"11337\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594342619\",\"franchise\":\"0008\",\"round\":\"16\",\"player\":\"14843\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594344437\",\"franchise\":\"0004\",\"round\":\"16\",\"player\":\"13631\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594345341\",\"franchise\":\"0006\",\"round\":\"16\",\"player\":\"14112\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594345988\",\"franchise\":\"0010\",\"round\":\"16\",\"player\":\"14143\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594345988\",\"franchise\":\"0007\",\"round\":\"16\",\"player\":\"14842\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594348662\",\"franchise\":\"0002\",\"round\":\"16\",\"player\":\"14852\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594382225\",\"franchise\":\"0003\",\"round\":\"16\",\"player\":\"13763\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594382859\",\"franchise\":\"0009\",\"round\":\"16\",\"player\":\"9925\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"16\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"17\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0009\",\"round\":\"17\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"17\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"17\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"17\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"17\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"17\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"17\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"17\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0011\",\"round\":\"17\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"17\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"17\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"18\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"18\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0011\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0009\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0009\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0011\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0011\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0009\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0009\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0011\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0011\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0009\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0001,0009,0003,0002,0007,0010,0006,0004,0008,0011,0012,0005,\"},{\"unit\":\"DIVISION01\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044100\",\"franchise\":\"0015\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044100\",\"franchise\":\"0014\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044398\",\"franchise\":\"0013\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594044398\",\"franchise\":\"0022\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045859\",\"franchise\":\"0016\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594046226\",\"franchise\":\"0024\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594047273\",\"franchise\":\"0019\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594047574\",\"franchise\":\"0017\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594048954\",\"franchise\":\"0021\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594049598\",\"franchise\":\"0023\",\"round\":\"01\",\"player\":\"11675\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594078825\",\"franchise\":\"0020\",\"round\":\"01\",\"player\":\"11232\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594078825\",\"franchise\":\"0018\",\"round\":\"01\",\"player\":\"10271\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594078825\",\"franchise\":\"0018\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594078968\",\"franchise\":\"0020\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594078968\",\"franchise\":\"0023\",\"round\":\"02\",\"player\":\"13299\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594079085\",\"franchise\":\"0021\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594079202\",\"franchise\":\"0017\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594097659\",\"franchise\":\"0019\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594097737\",\"franchise\":\"0024\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594097737\",\"franchise\":\"0016\",\"round\":\"02\",\"player\":\"13671\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594102655\",\"franchise\":\"0022\",\"round\":\"02\",\"player\":\"12626\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594103777\",\"franchise\":\"0013\",\"round\":\"02\",\"player\":\"12801\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594103777\",\"franchise\":\"0014\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594128335\",\"franchise\":\"0015\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594128427\",\"franchise\":\"0015\",\"round\":\"03\",\"player\":\"14079\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594133046\",\"franchise\":\"0014\",\"round\":\"03\",\"player\":\"13610\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594136712\",\"franchise\":\"0013\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594142388\",\"franchise\":\"0022\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594143267\",\"franchise\":\"0016\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594145301\",\"franchise\":\"0024\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594148226\",\"franchise\":\"0019\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594148545\",\"franchise\":\"0017\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594149335\",\"franchise\":\"0021\",\"round\":\"03\",\"player\":\"13146\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594156860\",\"franchise\":\"0023\",\"round\":\"03\",\"player\":\"14802\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594157838\",\"franchise\":\"0020\",\"round\":\"03\",\"player\":\"11671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594157838\",\"franchise\":\"0018\",\"round\":\"03\",\"player\":\"13364\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594157838\",\"franchise\":\"0018\",\"round\":\"04\",\"player\":\"12263\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594157934\",\"franchise\":\"0020\",\"round\":\"04\",\"player\":\"9099\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594158287\",\"franchise\":\"0023\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594158566\",\"franchise\":\"0021\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594158790\",\"franchise\":\"0017\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594166872\",\"franchise\":\"0019\",\"round\":\"04\",\"player\":\"12610\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594167941\",\"franchise\":\"0024\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594167941\",\"franchise\":\"0016\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594172528\",\"franchise\":\"0022\",\"round\":\"04\",\"player\":\"13164\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594175574\",\"franchise\":\"0013\",\"round\":\"04\",\"player\":\"13129\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594184613\",\"franchise\":\"0014\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594184707\",\"franchise\":\"0015\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594184784\",\"franchise\":\"0015\",\"round\":\"05\",\"player\":\"13635\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594185312\",\"franchise\":\"0014\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594186173\",\"franchise\":\"0013\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594188045\",\"franchise\":\"0022\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594188045\",\"franchise\":\"0016\",\"round\":\"05\",\"player\":\"9431\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594216393\",\"franchise\":\"0024\",\"round\":\"05\",\"player\":\"13589\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594221833\",\"franchise\":\"0019\",\"round\":\"05\",\"player\":\"12151\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594222660\",\"franchise\":\"0017\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594222791\",\"franchise\":\"0021\",\"round\":\"05\",\"player\":\"11228\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594239177\",\"franchise\":\"0023\",\"round\":\"05\",\"player\":\"5848\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594240781\",\"franchise\":\"0020\",\"round\":\"05\",\"player\":\"14799\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594240781\",\"franchise\":\"0018\",\"round\":\"05\",\"player\":\"11222\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594240781\",\"franchise\":\"0018\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594241045\",\"franchise\":\"0020\",\"round\":\"06\",\"player\":\"13629\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594246972\",\"franchise\":\"0023\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594249031\",\"franchise\":\"0021\",\"round\":\"06\",\"player\":\"13668\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594249142\",\"franchise\":\"0017\",\"round\":\"06\",\"player\":\"14059\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594256488\",\"franchise\":\"0019\",\"round\":\"06\",\"player\":\"12187\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594258530\",\"franchise\":\"0024\",\"round\":\"06\",\"player\":\"13189\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594258530\",\"franchise\":\"0016\",\"round\":\"06\",\"player\":\"12176\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594258530\",\"franchise\":\"0022\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594259492\",\"franchise\":\"0013\",\"round\":\"06\",\"player\":\"14102\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594261994\",\"franchise\":\"0014\",\"round\":\"06\",\"player\":\"14109\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594264370\",\"franchise\":\"0015\",\"round\":\"06\",\"player\":\"7401\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594264563\",\"franchise\":\"0015\",\"round\":\"07\",\"player\":\"14105\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594265146\",\"franchise\":\"0014\",\"round\":\"07\",\"player\":\"10697\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594265561\",\"franchise\":\"0013\",\"round\":\"07\",\"player\":\"14777\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594266664\",\"franchise\":\"0022\",\"round\":\"07\",\"player\":\"14080\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594266664\",\"franchise\":\"0016\",\"round\":\"07\",\"player\":\"12678\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594268776\",\"franchise\":\"0024\",\"round\":\"07\",\"player\":\"13680\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594277105\",\"franchise\":\"0019\",\"round\":\"07\",\"player\":\"11760\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594286060\",\"franchise\":\"0017\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594288250\",\"franchise\":\"0021\",\"round\":\"07\",\"player\":\"11644\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594301477\",\"franchise\":\"0023\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594309172\",\"franchise\":\"0020\",\"round\":\"07\",\"player\":\"12676\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594309172\",\"franchise\":\"0018\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594309172\",\"franchise\":\"0018\",\"round\":\"08\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594309266\",\"franchise\":\"0020\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594314058\",\"franchise\":\"0023\",\"round\":\"08\",\"player\":\"13590\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594315203\",\"franchise\":\"0021\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594315358\",\"franchise\":\"0017\",\"round\":\"08\",\"player\":\"13605\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594317354\",\"franchise\":\"0019\",\"round\":\"08\",\"player\":\"13138\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594325253\",\"franchise\":\"0024\",\"round\":\"08\",\"player\":\"13606\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594325253\",\"franchise\":\"0016\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594325357\",\"franchise\":\"0022\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594330160\",\"franchise\":\"0013\",\"round\":\"08\",\"player\":\"14057\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594338238\",\"franchise\":\"0014\",\"round\":\"08\",\"player\":\"12447\",\"pick\":\"11\",\"comments\":\"Going for the biscuit\"},{\"timestamp\":\"1594338238\",\"franchise\":\"0015\",\"round\":\"08\",\"player\":\"7394\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594340318\",\"franchise\":\"0015\",\"round\":\"09\",\"player\":\"10729\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594344421\",\"franchise\":\"0014\",\"round\":\"09\",\"player\":\"12650\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594346023\",\"franchise\":\"0013\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594354230\",\"franchise\":\"0022\",\"round\":\"09\",\"player\":\"9902\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594354230\",\"franchise\":\"0016\",\"round\":\"09\",\"player\":\"14067\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594356047\",\"franchise\":\"0024\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594359539\",\"franchise\":\"0019\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594359539\",\"franchise\":\"0017\",\"round\":\"09\",\"player\":\"14833\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594377280\",\"franchise\":\"0021\",\"round\":\"09\",\"player\":\"10738\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594386348\",\"franchise\":\"0023\",\"round\":\"09\",\"player\":\"13672\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"09\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"09\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"10\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"10\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"10\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"10\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"10\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"10\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"10\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"10\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"10\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"10\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"10\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"10\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"11\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"11\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"11\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"11\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"11\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"11\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"11\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"11\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"11\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"11\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"11\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"11\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"12\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"12\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"12\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"12\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"12\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"12\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"12\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"12\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"12\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"12\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"12\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"12\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"13\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"13\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"13\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"13\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"13\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"13\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"13\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"13\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"13\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"13\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"13\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"13\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"14\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"14\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"14\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"14\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"14\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"14\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"14\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"14\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"14\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"14\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"14\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"14\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"15\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"15\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"15\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"15\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"15\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"15\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"15\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"15\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"15\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"15\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"15\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"15\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"16\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"16\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"16\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"16\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"16\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"16\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"16\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"16\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"16\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"16\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"16\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"16\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"17\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"17\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"17\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"17\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"17\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"17\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"17\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"17\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"17\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"17\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"17\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"17\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"18\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"18\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0018\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0020\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0023\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0021\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0017\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0019\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0024\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0016\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0022\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0015\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0015,0014,0013,0022,0016,0024,0019,0017,0021,0023,0020,0018,\"},{\"unit\":\"DIVISION02\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0030\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044101\",\"franchise\":\"0026\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045000\",\"franchise\":\"0031\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594045000\",\"franchise\":\"0035\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045257\",\"franchise\":\"0027\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594045257\",\"franchise\":\"0033\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045513\",\"franchise\":\"0029\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"07\",\"comments\":\"Sorry for the delay, Magsh!\"},{\"timestamp\":\"1594046002\",\"franchise\":\"0032\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594046002\",\"franchise\":\"0028\",\"round\":\"01\",\"player\":\"11675\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594047797\",\"franchise\":\"0034\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594047998\",\"franchise\":\"0036\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594048496\",\"franchise\":\"0025\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594049473\",\"franchise\":\"0025\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594050428\",\"franchise\":\"0036\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594050552\",\"franchise\":\"0034\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594050552\",\"franchise\":\"0028\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594050929\",\"franchise\":\"0032\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594051118\",\"franchise\":\"0029\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594051118\",\"franchise\":\"0033\",\"round\":\"02\",\"player\":\"11232\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051522\",\"franchise\":\"0027\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594051522\",\"franchise\":\"0035\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051696\",\"franchise\":\"0031\",\"round\":\"02\",\"player\":\"10271\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594051696\",\"franchise\":\"0026\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594053726\",\"franchise\":\"0030\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594053745\",\"franchise\":\"0030\",\"round\":\"03\",\"player\":\"14056\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594053745\",\"franchise\":\"0026\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594053993\",\"franchise\":\"0031\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594053993\",\"franchise\":\"0035\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594054168\",\"franchise\":\"0027\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594063645\",\"franchise\":\"0033\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594063645\",\"franchise\":\"0029\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594064951\",\"franchise\":\"0032\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594064951\",\"franchise\":\"0028\",\"round\":\"03\",\"player\":\"13589\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067214\",\"franchise\":\"0034\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594067889\",\"franchise\":\"0036\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594069274\",\"franchise\":\"0025\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"12\",\"comments\":\" \"},{\"timestamp\":\"1594069416\",\"franchise\":\"0025\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594072438\",\"franchise\":\"0036\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594072522\",\"franchise\":\"0034\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594072522\",\"franchise\":\"0028\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594072854\",\"franchise\":\"0032\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594072854\",\"franchise\":\"0029\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594077782\",\"franchise\":\"0033\",\"round\":\"04\",\"player\":\"13590\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594077841\",\"franchise\":\"0027\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594077841\",\"franchise\":\"0035\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594077975\",\"franchise\":\"0031\",\"round\":\"04\",\"player\":\"13364\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594077975\",\"franchise\":\"0026\",\"round\":\"04\",\"player\":\"13164\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594082766\",\"franchise\":\"0030\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594082773\",\"franchise\":\"0030\",\"round\":\"05\",\"player\":\"11671\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594082773\",\"franchise\":\"0026\",\"round\":\"05\",\"player\":\"12151\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594083363\",\"franchise\":\"0031\",\"round\":\"05\",\"player\":\"14059\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594083363\",\"franchise\":\"0035\",\"round\":\"05\",\"player\":\"11640\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594083570\",\"franchise\":\"0027\",\"round\":\"05\",\"player\":\"14071\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594084729\",\"franchise\":\"0033\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594084729\",\"franchise\":\"0029\",\"round\":\"05\",\"player\":\"10697\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594103919\",\"franchise\":\"0032\",\"round\":\"05\",\"player\":\"11678\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594103919\",\"franchise\":\"0028\",\"round\":\"05\",\"player\":\"11760\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594118252\",\"franchise\":\"0034\",\"round\":\"05\",\"player\":\"13277\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594118802\",\"franchise\":\"0036\",\"round\":\"05\",\"player\":\"13156\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594123917\",\"franchise\":\"0025\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594125223\",\"franchise\":\"0025\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594128380\",\"franchise\":\"0036\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594128629\",\"franchise\":\"0034\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594128629\",\"franchise\":\"0028\",\"round\":\"06\",\"player\":\"14777\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594129705\",\"franchise\":\"0032\",\"round\":\"06\",\"player\":\"11644\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594129705\",\"franchise\":\"0029\",\"round\":\"06\",\"player\":\"13629\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594130698\",\"franchise\":\"0033\",\"round\":\"06\",\"player\":\"14057\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594130770\",\"franchise\":\"0027\",\"round\":\"06\",\"player\":\"12176\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594130770\",\"franchise\":\"0035\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594132811\",\"franchise\":\"0031\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594132811\",\"franchise\":\"0026\",\"round\":\"06\",\"player\":\"10276\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594134812\",\"franchise\":\"0030\",\"round\":\"06\",\"player\":\"12263\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594134834\",\"franchise\":\"0030\",\"round\":\"07\",\"player\":\"13189\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594135462\",\"franchise\":\"0026\",\"round\":\"07\",\"player\":\"13138\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594136425\",\"franchise\":\"0031\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594147432\",\"franchise\":\"0035\",\"round\":\"07\",\"player\":\"14799\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594147896\",\"franchise\":\"0027\",\"round\":\"07\",\"player\":\"14080\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594149140\",\"franchise\":\"0033\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594149140\",\"franchise\":\"0029\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594156280\",\"franchise\":\"0032\",\"round\":\"07\",\"player\":\"11222\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594156280\",\"franchise\":\"0028\",\"round\":\"07\",\"player\":\"10729\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594157473\",\"franchise\":\"0034\",\"round\":\"07\",\"player\":\"12447\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594158162\",\"franchise\":\"0036\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594159191\",\"franchise\":\"0025\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594160189\",\"franchise\":\"0025\",\"round\":\"08\",\"player\":\"14109\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594160581\",\"franchise\":\"0036\",\"round\":\"08\",\"player\":\"13668\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594161959\",\"franchise\":\"0034\",\"round\":\"08\",\"player\":\"9902\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594161959\",\"franchise\":\"0028\",\"round\":\"08\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594162594\",\"franchise\":\"0032\",\"round\":\"08\",\"player\":\"7394\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594163607\",\"franchise\":\"0029\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594164886\",\"franchise\":\"0033\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594164981\",\"franchise\":\"0027\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594164981\",\"franchise\":\"0035\",\"round\":\"08\",\"player\":\"14105\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594165424\",\"franchise\":\"0031\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594165424\",\"franchise\":\"0026\",\"round\":\"08\",\"player\":\"11674\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594171946\",\"franchise\":\"0030\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594171969\",\"franchise\":\"0030\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594171969\",\"franchise\":\"0026\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594173015\",\"franchise\":\"0031\",\"round\":\"09\",\"player\":\"9474\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594173363\",\"franchise\":\"0035\",\"round\":\"09\",\"player\":\"14067\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594173619\",\"franchise\":\"0027\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594174391\",\"franchise\":\"0033\",\"round\":\"09\",\"player\":\"13680\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594174391\",\"franchise\":\"0029\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594189179\",\"franchise\":\"0032\",\"round\":\"09\",\"player\":\"12634\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594189179\",\"franchise\":\"0028\",\"round\":\"09\",\"player\":\"12647\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594189179\",\"franchise\":\"0034\",\"round\":\"09\",\"player\":\"14778\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594203366\",\"franchise\":\"0036\",\"round\":\"09\",\"player\":\"13605\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594207020\",\"franchise\":\"0025\",\"round\":\"09\",\"player\":\"10261\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594207059\",\"franchise\":\"0025\",\"round\":\"10\",\"player\":\"11747\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594207585\",\"franchise\":\"0036\",\"round\":\"10\",\"player\":\"13672\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594214451\",\"franchise\":\"0034\",\"round\":\"10\",\"player\":\"14223\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594214451\",\"franchise\":\"0028\",\"round\":\"10\",\"player\":\"12677\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594215252\",\"franchise\":\"0032\",\"round\":\"10\",\"player\":\"13607\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594215252\",\"franchise\":\"0029\",\"round\":\"10\",\"player\":\"14810\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594215949\",\"franchise\":\"0033\",\"round\":\"10\",\"player\":\"13234\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594216379\",\"franchise\":\"0027\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594216379\",\"franchise\":\"0035\",\"round\":\"10\",\"player\":\"14122\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594218682\",\"franchise\":\"0031\",\"round\":\"10\",\"player\":\"10738\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594218682\",\"franchise\":\"0026\",\"round\":\"10\",\"player\":\"9662\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594219090\",\"franchise\":\"0030\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594219103\",\"franchise\":\"0030\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594219531\",\"franchise\":\"0026\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594220422\",\"franchise\":\"0031\",\"round\":\"11\",\"player\":\"14852\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594220422\",\"franchise\":\"0035\",\"round\":\"11\",\"player\":\"14138\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594220564\",\"franchise\":\"0027\",\"round\":\"11\",\"player\":\"14113\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594220963\",\"franchise\":\"0033\",\"round\":\"11\",\"player\":\"14208\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594220963\",\"franchise\":\"0029\",\"round\":\"11\",\"player\":\"14137\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594222615\",\"franchise\":\"0032\",\"round\":\"11\",\"player\":\"12658\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594222615\",\"franchise\":\"0028\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594223668\",\"franchise\":\"0034\",\"round\":\"11\",\"player\":\"14832\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594223982\",\"franchise\":\"0036\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594224883\",\"franchise\":\"0025\",\"round\":\"11\",\"player\":\"13639\",\"pick\":\"12\",\"comments\":\"r\"},{\"timestamp\":\"1594227074\",\"franchise\":\"0025\",\"round\":\"12\",\"player\":\"14836\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594227183\",\"franchise\":\"0036\",\"round\":\"12\",\"player\":\"12184\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594227183\",\"franchise\":\"0034\",\"round\":\"12\",\"player\":\"13674\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594227183\",\"franchise\":\"0028\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594227416\",\"franchise\":\"0032\",\"round\":\"12\",\"player\":\"14834\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594227416\",\"franchise\":\"0029\",\"round\":\"12\",\"player\":\"11390\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594228069\",\"franchise\":\"0033\",\"round\":\"12\",\"player\":\"14779\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594228184\",\"franchise\":\"0027\",\"round\":\"12\",\"player\":\"14839\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594236056\",\"franchise\":\"0035\",\"round\":\"12\",\"player\":\"13679\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594236153\",\"franchise\":\"0031\",\"round\":\"12\",\"player\":\"14058\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594236519\",\"franchise\":\"0026\",\"round\":\"12\",\"player\":\"13290\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594240792\",\"franchise\":\"0030\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594240804\",\"franchise\":\"0030\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594240804\",\"franchise\":\"0026\",\"round\":\"13\",\"player\":\"13678\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594240942\",\"franchise\":\"0031\",\"round\":\"13\",\"player\":\"12152\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594241718\",\"franchise\":\"0035\",\"round\":\"13\",\"player\":\"13157\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594244334\",\"franchise\":\"0027\",\"round\":\"13\",\"player\":\"11695\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594250348\",\"franchise\":\"0033\",\"round\":\"13\",\"player\":\"10312\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594250348\",\"franchise\":\"0029\",\"round\":\"13\",\"player\":\"14833\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594250348\",\"franchise\":\"0032\",\"round\":\"13\",\"player\":\"11783\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594250348\",\"franchise\":\"0028\",\"round\":\"13\",\"player\":\"14085\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594250348\",\"franchise\":\"0034\",\"round\":\"13\",\"player\":\"8062\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594251021\",\"franchise\":\"0036\",\"round\":\"13\",\"player\":\"14126\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594255677\",\"franchise\":\"0025\",\"round\":\"13\",\"player\":\"14842\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594255813\",\"franchise\":\"0025\",\"round\":\"14\",\"player\":\"13814\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594255970\",\"franchise\":\"0036\",\"round\":\"14\",\"player\":\"14805\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594256968\",\"franchise\":\"0034\",\"round\":\"14\",\"player\":\"9988\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594257160\",\"franchise\":\"0028\",\"round\":\"14\",\"player\":\"9831\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594280095\",\"franchise\":\"0032\",\"round\":\"14\",\"player\":\"14141\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594280095\",\"franchise\":\"0029\",\"round\":\"14\",\"player\":\"13154\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594293165\",\"franchise\":\"0033\",\"round\":\"14\",\"player\":\"11660\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594293676\",\"franchise\":\"0027\",\"round\":\"14\",\"player\":\"12157\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594293676\",\"franchise\":\"0035\",\"round\":\"14\",\"player\":\"14140\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594302513\",\"franchise\":\"0031\",\"round\":\"14\",\"player\":\"9918\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594302513\",\"franchise\":\"0026\",\"round\":\"14\",\"player\":\"13622\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594303474\",\"franchise\":\"0030\",\"round\":\"14\",\"player\":\"14101\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303492\",\"franchise\":\"0030\",\"round\":\"15\",\"player\":\"14087\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594303492\",\"franchise\":\"0026\",\"round\":\"15\",\"player\":\"13168\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594304267\",\"franchise\":\"0031\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594304267\",\"franchise\":\"0035\",\"round\":\"15\",\"player\":\"14840\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594304732\",\"franchise\":\"0027\",\"round\":\"15\",\"player\":\"12197\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594305692\",\"franchise\":\"0033\",\"round\":\"15\",\"player\":\"14123\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594306132\",\"franchise\":\"0029\",\"round\":\"15\",\"player\":\"14807\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594306510\",\"franchise\":\"0032\",\"round\":\"15\",\"player\":\"10722\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594306510\",\"franchise\":\"0028\",\"round\":\"15\",\"player\":\"8687\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594307076\",\"franchise\":\"0034\",\"round\":\"15\",\"player\":\"10413\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594307658\",\"franchise\":\"0036\",\"round\":\"15\",\"player\":\"10699\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594317407\",\"franchise\":\"0025\",\"round\":\"15\",\"player\":\"13632\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594317468\",\"franchise\":\"0025\",\"round\":\"16\",\"player\":\"9075\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594317692\",\"franchise\":\"0036\",\"round\":\"16\",\"player\":\"11670\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594317915\",\"franchise\":\"0034\",\"round\":\"16\",\"player\":\"10313\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594317915\",\"franchise\":\"0028\",\"round\":\"16\",\"player\":\"12930\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594329021\",\"franchise\":\"0032\",\"round\":\"16\",\"player\":\"13608\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594329021\",\"franchise\":\"0029\",\"round\":\"16\",\"player\":\"14112\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594329651\",\"franchise\":\"0033\",\"round\":\"16\",\"player\":\"14063\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594329845\",\"franchise\":\"0027\",\"round\":\"16\",\"player\":\"14116\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594329845\",\"franchise\":\"0035\",\"round\":\"16\",\"player\":\"14846\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594331968\",\"franchise\":\"0031\",\"round\":\"16\",\"player\":\"14613\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594332054\",\"franchise\":\"0026\",\"round\":\"16\",\"player\":\"12386\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594332450\",\"franchise\":\"0030\",\"round\":\"16\",\"player\":\"14808\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594332474\",\"franchise\":\"0030\",\"round\":\"17\",\"player\":\"14838\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594332585\",\"franchise\":\"0026\",\"round\":\"17\",\"player\":\"13236\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594335068\",\"franchise\":\"0031\",\"round\":\"17\",\"player\":\"11186\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594335068\",\"franchise\":\"0035\",\"round\":\"17\",\"player\":\"14075\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594337791\",\"franchise\":\"0027\",\"round\":\"17\",\"player\":\"13879\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594338372\",\"franchise\":\"0033\",\"round\":\"17\",\"player\":\"7393\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594338600\",\"franchise\":\"0029\",\"round\":\"17\",\"player\":\"14835\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594360981\",\"franchise\":\"0032\",\"round\":\"17\",\"player\":\"13153\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594360981\",\"franchise\":\"0028\",\"round\":\"17\",\"player\":\"11182\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594375027\",\"franchise\":\"0034\",\"round\":\"17\",\"player\":\"13188\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594378290\",\"franchise\":\"0036\",\"round\":\"17\",\"player\":\"14804\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594387639\",\"franchise\":\"0025\",\"round\":\"17\",\"player\":\"11193\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594387752\",\"franchise\":\"0025\",\"round\":\"18\",\"player\":\"11657\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594388221\",\"franchise\":\"0036\",\"round\":\"18\",\"player\":\"10308\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0034\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0028\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0032\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0029\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0033\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0027\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0035\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0031\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0026\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0030\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0030\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0026\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0031\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0035\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0027\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0033\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0029\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0032\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0028\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0034\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0036\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0025\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0025\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0036\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0034\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0028\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0032\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0029\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0033\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0027\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0035\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0031\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0026\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0030\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0030\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0026\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0031\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0035\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0027\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0033\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0029\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0032\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0028\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0034\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0036\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0025\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0025\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0036\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0034\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0028\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0032\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0029\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0033\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0027\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0035\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0031\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0026\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0030\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0030,0026,0031,0035,0027,0033,0029,0032,0028,0034,0036,0025,\"},{\"unit\":\"DIVISION03\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044020\",\"franchise\":\"0045\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594044529\",\"franchise\":\"0039\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"02\",\"comments\":\"We are also working on signing him to a 10-year contract.  \"},{\"timestamp\":\"1594044687\",\"franchise\":\"0040\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594044868\",\"franchise\":\"0043\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594045164\",\"franchise\":\"0047\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594045164\",\"franchise\":\"0048\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] Tough to pass up on Zeke and other options, but I'm excited to see what Kamara can do this season!\"},{\"timestamp\":\"1594045285\",\"franchise\":\"0046\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594060723\",\"franchise\":\"0042\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594061070\",\"franchise\":\"0044\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594061287\",\"franchise\":\"0041\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594062306\",\"franchise\":\"0037\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594062720\",\"franchise\":\"0038\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594062746\",\"franchise\":\"0038\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594062950\",\"franchise\":\"0037\",\"round\":\"02\",\"player\":\"10271\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594063593\",\"franchise\":\"0041\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"03\",\"comments\":\"I went back and forth on mixon and sanders to the point that I was actually telling people I took mixon...\\n\"},{\"timestamp\":\"1594063799\",\"franchise\":\"0044\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594065538\",\"franchise\":\"0042\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"05\",\"comments\":\"tough crowd .. not who I hoped for here.. but should be the guy in ARI\"},{\"timestamp\":\"1594065819\",\"franchise\":\"0046\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594066421\",\"franchise\":\"0048\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"07\",\"comments\":\"Because of bye weeks...I will be a free square W for someone in Week 6.\"},{\"timestamp\":\"1594071375\",\"franchise\":\"0047\",\"round\":\"02\",\"player\":\"11232\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594071871\",\"franchise\":\"0043\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594072075\",\"franchise\":\"0040\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594072557\",\"franchise\":\"0039\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594073906\",\"franchise\":\"0045\",\"round\":\"02\",\"player\":\"12801\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594074474\",\"franchise\":\"0045\",\"round\":\"03\",\"player\":\"13113\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594074765\",\"franchise\":\"0039\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594074983\",\"franchise\":\"0040\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594075042\",\"franchise\":\"0043\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594079221\",\"franchise\":\"0047\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594079809\",\"franchise\":\"0048\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594079996\",\"franchise\":\"0046\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594081515\",\"franchise\":\"0042\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"08\",\"comments\":\"sometimes, you have to take a chance.. \"},{\"timestamp\":\"1594082072\",\"franchise\":\"0044\",\"round\":\"03\",\"player\":\"13277\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594083380\",\"franchise\":\"0041\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594085389\",\"franchise\":\"0037\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594085529\",\"franchise\":\"0038\",\"round\":\"03\",\"player\":\"11671\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594086218\",\"franchise\":\"0038\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594089877\",\"franchise\":\"0037\",\"round\":\"04\",\"player\":\"12610\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594090764\",\"franchise\":\"0041\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594092143\",\"franchise\":\"0044\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594101032\",\"franchise\":\"0042\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594117098\",\"franchise\":\"0046\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594124194\",\"franchise\":\"0048\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594125245\",\"franchise\":\"0047\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594126066\",\"franchise\":\"0043\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594126295\",\"franchise\":\"0040\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594128131\",\"franchise\":\"0039\",\"round\":\"04\",\"player\":\"12447\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594129449\",\"franchise\":\"0045\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594130086\",\"franchise\":\"0045\",\"round\":\"05\",\"player\":\"13589\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594131876\",\"franchise\":\"0039\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594132377\",\"franchise\":\"0040\",\"round\":\"05\",\"player\":\"11640\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594132685\",\"franchise\":\"0043\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594133018\",\"franchise\":\"0047\",\"round\":\"05\",\"player\":\"5848\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594133524\",\"franchise\":\"0048\",\"round\":\"05\",\"player\":\"13590\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594133738\",\"franchise\":\"0046\",\"round\":\"05\",\"player\":\"10697\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594139038\",\"franchise\":\"0042\",\"round\":\"05\",\"player\":\"10700\",\"pick\":\"08\",\"comments\":\"need another QB.. and bonus.. MN Viking\"},{\"timestamp\":\"1594139613\",\"franchise\":\"0044\",\"round\":\"05\",\"player\":\"12611\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594140671\",\"franchise\":\"0041\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594142748\",\"franchise\":\"0037\",\"round\":\"05\",\"player\":\"11228\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594143668\",\"franchise\":\"0038\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594143759\",\"franchise\":\"0038\",\"round\":\"06\",\"player\":\"7401\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594145094\",\"franchise\":\"0037\",\"round\":\"06\",\"player\":\"13189\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594145982\",\"franchise\":\"0041\",\"round\":\"06\",\"player\":\"11644\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594151364\",\"franchise\":\"0044\",\"round\":\"06\",\"player\":\"13164\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594151364\",\"franchise\":\"0042\",\"round\":\"06\",\"player\":\"13364\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594151509\",\"franchise\":\"0046\",\"round\":\"06\",\"player\":\"14067\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594152049\",\"franchise\":\"0048\",\"round\":\"06\",\"player\":\"11192\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594152174\",\"franchise\":\"0047\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594152228\",\"franchise\":\"0043\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594153164\",\"franchise\":\"0040\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594155990\",\"franchise\":\"0039\",\"round\":\"06\",\"player\":\"14799\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594156465\",\"franchise\":\"0045\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594156488\",\"franchise\":\"0045\",\"round\":\"07\",\"player\":\"14059\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594156894\",\"franchise\":\"0039\",\"round\":\"07\",\"player\":\"14777\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594157863\",\"franchise\":\"0040\",\"round\":\"07\",\"player\":\"13138\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594158198\",\"franchise\":\"0043\",\"round\":\"07\",\"player\":\"13668\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594158262\",\"franchise\":\"0047\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594158384\",\"franchise\":\"0048\",\"round\":\"07\",\"player\":\"7394\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594158474\",\"franchise\":\"0046\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594159362\",\"franchise\":\"0042\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"08\",\"comments\":\"not a bad WR1 in the 7th round\"},{\"timestamp\":\"1594161546\",\"franchise\":\"0044\",\"round\":\"07\",\"player\":\"11760\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594162573\",\"franchise\":\"0041\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594171157\",\"franchise\":\"0037\",\"round\":\"07\",\"player\":\"12186\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594171247\",\"franchise\":\"0038\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594171699\",\"franchise\":\"0038\",\"round\":\"08\",\"player\":\"14102\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594171853\",\"franchise\":\"0037\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594172951\",\"franchise\":\"0041\",\"round\":\"08\",\"player\":\"14057\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594173428\",\"franchise\":\"0044\",\"round\":\"08\",\"player\":\"13605\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594178808\",\"franchise\":\"0042\",\"round\":\"08\",\"player\":\"12187\",\"pick\":\"05\",\"comments\":\"okay, okay.. I could use another WR.. and Lockett seems like good value.. \"},{\"timestamp\":\"1594206218\",\"franchise\":\"0046\",\"round\":\"08\",\"player\":\"13680\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594206218\",\"franchise\":\"0048\",\"round\":\"08\",\"player\":\"14797\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594215450\",\"franchise\":\"0047\",\"round\":\"08\",\"player\":\"9902\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594215521\",\"franchise\":\"0043\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594215721\",\"franchise\":\"0040\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594216002\",\"franchise\":\"0039\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594216176\",\"franchise\":\"0045\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594217075\",\"franchise\":\"0045\",\"round\":\"09\",\"player\":\"10729\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594217520\",\"franchise\":\"0039\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594217761\",\"franchise\":\"0040\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594218016\",\"franchise\":\"0043\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594218194\",\"franchise\":\"0047\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594218536\",\"franchise\":\"0048\",\"round\":\"09\",\"player\":\"13633\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594218709\",\"franchise\":\"0046\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594222692\",\"franchise\":\"0042\",\"round\":\"09\",\"player\":\"11674\",\"pick\":\"08\",\"comments\":\"I think he will be Houston WR1.. happy to have him in the 9th round \"},{\"timestamp\":\"1594223918\",\"franchise\":\"0044\",\"round\":\"09\",\"player\":\"11747\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594224264\",\"franchise\":\"0041\",\"round\":\"09\",\"player\":\"12647\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594224344\",\"franchise\":\"0037\",\"round\":\"09\",\"player\":\"10738\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594225409\",\"franchise\":\"0038\",\"round\":\"09\",\"player\":\"14138\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594225445\",\"franchise\":\"0038\",\"round\":\"10\",\"player\":\"13606\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594225955\",\"franchise\":\"0037\",\"round\":\"10\",\"player\":\"12677\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594227349\",\"franchise\":\"0041\",\"round\":\"10\",\"player\":\"13234\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594227756\",\"franchise\":\"0044\",\"round\":\"10\",\"player\":\"13672\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594233297\",\"franchise\":\"0042\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"05\",\"comments\":\"need a TE2.. he will do\"},{\"timestamp\":\"1594233332\",\"franchise\":\"0046\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594233332\",\"franchise\":\"0048\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233490\",\"franchise\":\"0047\",\"round\":\"10\",\"player\":\"13592\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594236469\",\"franchise\":\"0043\",\"round\":\"10\",\"player\":\"14810\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594236559\",\"franchise\":\"0040\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594237011\",\"franchise\":\"0039\",\"round\":\"10\",\"player\":\"14137\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594238606\",\"franchise\":\"0045\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594238619\",\"franchise\":\"0045\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594239107\",\"franchise\":\"0039\",\"round\":\"11\",\"player\":\"14836\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594239470\",\"franchise\":\"0040\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594239913\",\"franchise\":\"0043\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594240050\",\"franchise\":\"0047\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594240367\",\"franchise\":\"0048\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594240493\",\"franchise\":\"0046\",\"round\":\"11\",\"player\":\"9831\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594243513\",\"franchise\":\"0042\",\"round\":\"11\",\"player\":\"12152\",\"pick\":\"08\",\"comments\":\"ok.. I will bite after the news.. \"},{\"timestamp\":\"1594245305\",\"franchise\":\"0044\",\"round\":\"11\",\"player\":\"13290\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594249797\",\"franchise\":\"0041\",\"round\":\"11\",\"player\":\"14141\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594253988\",\"franchise\":\"0037\",\"round\":\"11\",\"player\":\"11670\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594253988\",\"franchise\":\"0038\",\"round\":\"11\",\"player\":\"9918\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594253988\",\"franchise\":\"0038\",\"round\":\"12\",\"player\":\"14832\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594255034\",\"franchise\":\"0037\",\"round\":\"12\",\"player\":\"13607\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594255553\",\"franchise\":\"0041\",\"round\":\"12\",\"player\":\"14101\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594256120\",\"franchise\":\"0044\",\"round\":\"12\",\"player\":\"14840\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594257481\",\"franchise\":\"0042\",\"round\":\"12\",\"player\":\"14839\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594258353\",\"franchise\":\"0046\",\"round\":\"12\",\"player\":\"13678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594263743\",\"franchise\":\"0048\",\"round\":\"12\",\"player\":\"14833\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594294339\",\"franchise\":\"0047\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594295411\",\"franchise\":\"0043\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594299788\",\"franchise\":\"0040\",\"round\":\"12\",\"player\":\"9988\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594302102\",\"franchise\":\"0039\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594302266\",\"franchise\":\"0045\",\"round\":\"12\",\"player\":\"12658\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303106\",\"franchise\":\"0045\",\"round\":\"13\",\"player\":\"14834\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594303362\",\"franchise\":\"0039\",\"round\":\"13\",\"player\":\"13632\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594303541\",\"franchise\":\"0040\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594304793\",\"franchise\":\"0043\",\"round\":\"13\",\"player\":\"14113\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594307442\",\"franchise\":\"0047\",\"round\":\"13\",\"player\":\"12157\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594307442\",\"franchise\":\"0048\",\"round\":\"13\",\"player\":\"14122\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594311071\",\"franchise\":\"0046\",\"round\":\"13\",\"player\":\"11390\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594318178\",\"franchise\":\"0042\",\"round\":\"13\",\"player\":\"13679\",\"pick\":\"08\",\"comments\":\"let's see if he can have a magical season like rookie.. \"},{\"timestamp\":\"1594318510\",\"franchise\":\"0044\",\"round\":\"13\",\"player\":\"14126\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594318693\",\"franchise\":\"0041\",\"round\":\"13\",\"player\":\"13188\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594319746\",\"franchise\":\"0037\",\"round\":\"13\",\"player\":\"13814\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594320946\",\"franchise\":\"0038\",\"round\":\"13\",\"player\":\"13157\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594320973\",\"franchise\":\"0038\",\"round\":\"14\",\"player\":\"14778\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594321090\",\"franchise\":\"0037\",\"round\":\"14\",\"player\":\"11695\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594324906\",\"franchise\":\"0041\",\"round\":\"14\",\"player\":\"14807\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594325389\",\"franchise\":\"0044\",\"round\":\"14\",\"player\":\"12197\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594334974\",\"franchise\":\"0042\",\"round\":\"14\",\"player\":\"13154\",\"pick\":\"05\",\"comments\":\"I guess nobody likes him.. he is a fine #5 I think\"},{\"timestamp\":\"1594336691\",\"franchise\":\"0046\",\"round\":\"14\",\"player\":\"14852\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594337032\",\"franchise\":\"0048\",\"round\":\"14\",\"player\":\"10413\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594337069\",\"franchise\":\"0047\",\"round\":\"14\",\"player\":\"14143\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594337589\",\"franchise\":\"0043\",\"round\":\"14\",\"player\":\"14085\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594337695\",\"franchise\":\"0040\",\"round\":\"14\",\"player\":\"14112\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594338379\",\"franchise\":\"0039\",\"round\":\"14\",\"player\":\"11783\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594339073\",\"franchise\":\"0045\",\"round\":\"14\",\"player\":\"14087\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594339850\",\"franchise\":\"0045\",\"round\":\"15\",\"player\":\"13639\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594340445\",\"franchise\":\"0039\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594340806\",\"franchise\":\"0040\",\"round\":\"15\",\"player\":\"14058\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594341619\",\"franchise\":\"0043\",\"round\":\"15\",\"player\":\"8687\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594341872\",\"franchise\":\"0047\",\"round\":\"15\",\"player\":\"14835\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594342077\",\"franchise\":\"0048\",\"round\":\"15\",\"player\":\"13236\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594345995\",\"franchise\":\"0046\",\"round\":\"15\",\"player\":\"8062\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594353451\",\"franchise\":\"0042\",\"round\":\"15\",\"player\":\"14805\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594354422\",\"franchise\":\"0044\",\"round\":\"15\",\"player\":\"14804\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594355599\",\"franchise\":\"0041\",\"round\":\"15\",\"player\":\"10308\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594356180\",\"franchise\":\"0037\",\"round\":\"15\",\"player\":\"12930\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594384454\",\"franchise\":\"0038\",\"round\":\"15\",\"player\":\"9075\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594384473\",\"franchise\":\"0038\",\"round\":\"16\",\"player\":\"13620\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0037\",\"round\":\"16\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0041\",\"round\":\"16\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0044\",\"round\":\"16\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0042\",\"round\":\"16\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0046\",\"round\":\"16\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0048\",\"round\":\"16\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0047\",\"round\":\"16\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0043\",\"round\":\"16\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0040\",\"round\":\"16\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0039\",\"round\":\"16\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0045\",\"round\":\"16\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0045\",\"round\":\"17\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0039\",\"round\":\"17\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0040\",\"round\":\"17\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0043\",\"round\":\"17\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0047\",\"round\":\"17\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0048\",\"round\":\"17\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0046\",\"round\":\"17\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0042\",\"round\":\"17\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0044\",\"round\":\"17\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0041\",\"round\":\"17\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0037\",\"round\":\"17\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0038\",\"round\":\"17\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0038\",\"round\":\"18\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0037\",\"round\":\"18\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0041\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0044\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0042\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0046\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0048\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0047\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0043\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0040\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0039\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0045\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0045\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0039\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0040\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0043\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0047\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0048\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0046\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0042\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0044\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0041\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0037\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0038\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0038\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0037\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0041\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0044\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0042\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0046\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0048\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0047\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0043\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0040\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0039\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0045\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0045\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0039\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0040\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0043\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0047\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0048\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0046\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0042\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0044\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0041\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0037\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0038\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0038\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0037\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0041\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0044\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0042\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0046\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0048\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0047\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0043\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0040\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0039\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0045\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0045,0039,0040,0043,0047,0048,0046,0042,0044,0041,0037,0038,\"},{\"unit\":\"DIVISION04\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0058\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594047778\",\"franchise\":\"0059\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594048122\",\"franchise\":\"0056\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594048240\",\"franchise\":\"0054\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594049879\",\"franchise\":\"0051\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594050174\",\"franchise\":\"0050\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594051971\",\"franchise\":\"0060\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594051971\",\"franchise\":\"0055\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594052173\",\"franchise\":\"0049\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594052711\",\"franchise\":\"0052\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594053096\",\"franchise\":\"0057\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594054167\",\"franchise\":\"0053\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594054206\",\"franchise\":\"0053\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594054283\",\"franchise\":\"0057\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594055415\",\"franchise\":\"0052\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594055721\",\"franchise\":\"0049\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594057449\",\"franchise\":\"0055\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594057540\",\"franchise\":\"0060\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594057973\",\"franchise\":\"0050\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594065899\",\"franchise\":\"0051\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594066911\",\"franchise\":\"0054\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594067219\",\"franchise\":\"0056\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594067349\",\"franchise\":\"0059\",\"round\":\"02\",\"player\":\"13671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594068979\",\"franchise\":\"0058\",\"round\":\"02\",\"player\":\"11247\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594069006\",\"franchise\":\"0058\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594069350\",\"franchise\":\"0059\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594071161\",\"franchise\":\"0056\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594071657\",\"franchise\":\"0054\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594083444\",\"franchise\":\"0051\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594087465\",\"franchise\":\"0050\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594087639\",\"franchise\":\"0060\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594089430\",\"franchise\":\"0055\",\"round\":\"03\",\"player\":\"9431\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594089430\",\"franchise\":\"0049\",\"round\":\"03\",\"player\":\"13156\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594125709\",\"franchise\":\"0052\",\"round\":\"03\",\"player\":\"13146\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594125709\",\"franchise\":\"0057\",\"round\":\"03\",\"player\":\"13277\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594132396\",\"franchise\":\"0053\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594132675\",\"franchise\":\"0053\",\"round\":\"04\",\"player\":\"12263\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594132960\",\"franchise\":\"0057\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594133497\",\"franchise\":\"0052\",\"round\":\"04\",\"player\":\"14803\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594133708\",\"franchise\":\"0049\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594137267\",\"franchise\":\"0055\",\"round\":\"04\",\"player\":\"12150\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594137365\",\"franchise\":\"0060\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594138275\",\"franchise\":\"0050\",\"round\":\"04\",\"player\":\"13129\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594140066\",\"franchise\":\"0051\",\"round\":\"04\",\"player\":\"13589\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594141781\",\"franchise\":\"0054\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594144323\",\"franchise\":\"0056\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594144507\",\"franchise\":\"0059\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594146008\",\"franchise\":\"0058\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594146205\",\"franchise\":\"0058\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594146276\",\"franchise\":\"0059\",\"round\":\"05\",\"player\":\"13364\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594147543\",\"franchise\":\"0056\",\"round\":\"05\",\"player\":\"11671\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594147851\",\"franchise\":\"0054\",\"round\":\"05\",\"player\":\"14059\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594149629\",\"franchise\":\"0051\",\"round\":\"05\",\"player\":\"13590\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594150138\",\"franchise\":\"0050\",\"round\":\"05\",\"player\":\"14071\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594150202\",\"franchise\":\"0060\",\"round\":\"05\",\"player\":\"7401\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594152184\",\"franchise\":\"0055\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594153451\",\"franchise\":\"0049\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594154584\",\"franchise\":\"0052\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594155098\",\"franchise\":\"0057\",\"round\":\"05\",\"player\":\"11679\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594157925\",\"franchise\":\"0053\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594158420\",\"franchise\":\"0053\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594158565\",\"franchise\":\"0057\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594159134\",\"franchise\":\"0052\",\"round\":\"06\",\"player\":\"11644\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594159451\",\"franchise\":\"0049\",\"round\":\"06\",\"player\":\"12676\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594163911\",\"franchise\":\"0055\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594163993\",\"franchise\":\"0060\",\"round\":\"06\",\"player\":\"12447\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594164407\",\"franchise\":\"0050\",\"round\":\"06\",\"player\":\"13164\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594166433\",\"franchise\":\"0051\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594168508\",\"franchise\":\"0054\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594170201\",\"franchise\":\"0056\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594170291\",\"franchise\":\"0059\",\"round\":\"06\",\"player\":\"14109\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594173849\",\"franchise\":\"0058\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594174532\",\"franchise\":\"0058\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594174571\",\"franchise\":\"0059\",\"round\":\"07\",\"player\":\"13668\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594177502\",\"franchise\":\"0056\",\"round\":\"07\",\"player\":\"14057\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594180205\",\"franchise\":\"0054\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594180329\",\"franchise\":\"0051\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594180726\",\"franchise\":\"0050\",\"round\":\"07\",\"player\":\"11747\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594216115\",\"franchise\":\"0060\",\"round\":\"07\",\"player\":\"11760\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594216115\",\"franchise\":\"0055\",\"round\":\"07\",\"player\":\"11222\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594216345\",\"franchise\":\"0049\",\"round\":\"07\",\"player\":\"14777\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594216655\",\"franchise\":\"0052\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594220747\",\"franchise\":\"0057\",\"round\":\"07\",\"player\":\"10697\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594223453\",\"franchise\":\"0053\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594223472\",\"franchise\":\"0053\",\"round\":\"08\",\"player\":\"13646\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594223793\",\"franchise\":\"0057\",\"round\":\"08\",\"player\":\"13680\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594229030\",\"franchise\":\"0052\",\"round\":\"08\",\"player\":\"10273\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594229701\",\"franchise\":\"0049\",\"round\":\"08\",\"player\":\"14799\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594232422\",\"franchise\":\"0055\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594232649\",\"franchise\":\"0060\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594233093\",\"franchise\":\"0050\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594233630\",\"franchise\":\"0051\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594236805\",\"franchise\":\"0054\",\"round\":\"08\",\"player\":\"10729\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594238829\",\"franchise\":\"0056\",\"round\":\"08\",\"player\":\"14067\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594239075\",\"franchise\":\"0059\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594243295\",\"franchise\":\"0058\",\"round\":\"08\",\"player\":\"12634\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594243737\",\"franchise\":\"0058\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594243759\",\"franchise\":\"0059\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594244611\",\"franchise\":\"0056\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594245463\",\"franchise\":\"0054\",\"round\":\"09\",\"player\":\"13605\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594247487\",\"franchise\":\"0051\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594247715\",\"franchise\":\"0050\",\"round\":\"09\",\"player\":\"7394\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594247828\",\"franchise\":\"0060\",\"round\":\"09\",\"player\":\"14137\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594251735\",\"franchise\":\"0055\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594251927\",\"franchise\":\"0049\",\"round\":\"09\",\"player\":\"12677\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594252227\",\"franchise\":\"0052\",\"round\":\"09\",\"player\":\"12647\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594254597\",\"franchise\":\"0057\",\"round\":\"09\",\"player\":\"11886\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594255743\",\"franchise\":\"0053\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594255759\",\"franchise\":\"0053\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594256542\",\"franchise\":\"0057\",\"round\":\"10\",\"player\":\"14223\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594257205\",\"franchise\":\"0052\",\"round\":\"10\",\"player\":\"14138\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594257402\",\"franchise\":\"0049\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594258231\",\"franchise\":\"0055\",\"round\":\"10\",\"player\":\"9902\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594258869\",\"franchise\":\"0060\",\"round\":\"10\",\"player\":\"13672\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594258969\",\"franchise\":\"0050\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594259722\",\"franchise\":\"0051\",\"round\":\"10\",\"player\":\"11516\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594261545\",\"franchise\":\"0054\",\"round\":\"10\",\"player\":\"13722\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594263124\",\"franchise\":\"0056\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594263289\",\"franchise\":\"0059\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594264549\",\"franchise\":\"0058\",\"round\":\"10\",\"player\":\"11674\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594264579\",\"franchise\":\"0058\",\"round\":\"11\",\"player\":\"10738\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594264962\",\"franchise\":\"0059\",\"round\":\"11\",\"player\":\"12658\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594265650\",\"franchise\":\"0056\",\"round\":\"11\",\"player\":\"14141\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594268497\",\"franchise\":\"0054\",\"round\":\"11\",\"player\":\"13679\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594275632\",\"franchise\":\"0051\",\"round\":\"11\",\"player\":\"14122\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594296280\",\"franchise\":\"0050\",\"round\":\"11\",\"player\":\"12152\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594296280\",\"franchise\":\"0060\",\"round\":\"11\",\"player\":\"13607\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313857\",\"franchise\":\"0055\",\"round\":\"11\",\"player\":\"14810\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594313990\",\"franchise\":\"0049\",\"round\":\"11\",\"player\":\"14113\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594314553\",\"franchise\":\"0052\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594314702\",\"franchise\":\"0057\",\"round\":\"11\",\"player\":\"11390\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594318758\",\"franchise\":\"0053\",\"round\":\"11\",\"player\":\"13234\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594318777\",\"franchise\":\"0053\",\"round\":\"12\",\"player\":\"14126\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594319100\",\"franchise\":\"0057\",\"round\":\"12\",\"player\":\"13678\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594319821\",\"franchise\":\"0052\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594320324\",\"franchise\":\"0049\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594324104\",\"franchise\":\"0055\",\"round\":\"12\",\"player\":\"13612\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594324197\",\"franchise\":\"0060\",\"round\":\"12\",\"player\":\"13154\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594324406\",\"franchise\":\"0050\",\"round\":\"12\",\"player\":\"14140\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594325852\",\"franchise\":\"0051\",\"round\":\"12\",\"player\":\"11783\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594326018\",\"franchise\":\"0054\",\"round\":\"12\",\"player\":\"9918\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594327237\",\"franchise\":\"0056\",\"round\":\"12\",\"player\":\"14085\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594327455\",\"franchise\":\"0059\",\"round\":\"12\",\"player\":\"14839\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594336587\",\"franchise\":\"0058\",\"round\":\"12\",\"player\":\"10699\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594336617\",\"franchise\":\"0058\",\"round\":\"13\",\"player\":\"13814\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594336720\",\"franchise\":\"0059\",\"round\":\"13\",\"player\":\"14101\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594338123\",\"franchise\":\"0056\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594341022\",\"franchise\":\"0054\",\"round\":\"13\",\"player\":\"9831\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594341880\",\"franchise\":\"0051\",\"round\":\"13\",\"player\":\"13639\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594343055\",\"franchise\":\"0050\",\"round\":\"13\",\"player\":\"13622\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594343166\",\"franchise\":\"0060\",\"round\":\"13\",\"player\":\"14832\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594346478\",\"franchise\":\"0055\",\"round\":\"13\",\"player\":\"13290\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594346801\",\"franchise\":\"0049\",\"round\":\"13\",\"player\":\"14136\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594348516\",\"franchise\":\"0052\",\"round\":\"13\",\"player\":\"14834\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594348777\",\"franchise\":\"0057\",\"round\":\"13\",\"player\":\"9988\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594382085\",\"franchise\":\"0053\",\"round\":\"13\",\"player\":\"14058\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594382115\",\"franchise\":\"0053\",\"round\":\"14\",\"player\":\"13726\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594387554\",\"franchise\":\"0057\",\"round\":\"14\",\"player\":\"11695\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594388004\",\"franchise\":\"0052\",\"round\":\"14\",\"player\":\"10413\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"14\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"14\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"14\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"14\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"14\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"14\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"14\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"14\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"14\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"15\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"15\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"15\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"15\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"15\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"15\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"15\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"15\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"15\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"15\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"15\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"15\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"16\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"16\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"16\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"16\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"16\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"16\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"16\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"16\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"16\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"16\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"16\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"16\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"17\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"17\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"17\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"17\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"17\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"17\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"17\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"17\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"17\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"17\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"17\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"17\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"18\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"18\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0053\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0057\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0052\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0049\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0055\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0060\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0050\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0051\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0054\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0056\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0059\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0058\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0058,0059,0056,0054,0051,0050,0060,0055,0049,0052,0057,0053,\"},{\"unit\":\"DIVISION05\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0068\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] Popping the champagne now...\"},{\"timestamp\":\"1594044361\",\"franchise\":\"0071\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594044361\",\"franchise\":\"0070\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044361\",\"franchise\":\"0065\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044361\",\"franchise\":\"0062\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045985\",\"franchise\":\"0069\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594045985\",\"franchise\":\"0066\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594050420\",\"franchise\":\"0064\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594052396\",\"franchise\":\"0063\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594053138\",\"franchise\":\"0061\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594053138\",\"franchise\":\"0072\",\"round\":\"01\",\"player\":\"13131\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594054020\",\"franchise\":\"0067\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594054038\",\"franchise\":\"0067\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594054418\",\"franchise\":\"0072\",\"round\":\"02\",\"player\":\"11244\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594054959\",\"franchise\":\"0061\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594058489\",\"franchise\":\"0063\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594058489\",\"franchise\":\"0064\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594058489\",\"franchise\":\"0066\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594068546\",\"franchise\":\"0069\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594069332\",\"franchise\":\"0062\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594069730\",\"franchise\":\"0065\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594070494\",\"franchise\":\"0070\",\"round\":\"02\",\"player\":\"13319\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594071223\",\"franchise\":\"0071\",\"round\":\"02\",\"player\":\"12801\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594078339\",\"franchise\":\"0068\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594085370\",\"franchise\":\"0068\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594085513\",\"franchise\":\"0071\",\"round\":\"03\",\"player\":\"12630\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594085784\",\"franchise\":\"0070\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594085796\",\"franchise\":\"0065\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594087466\",\"franchise\":\"0062\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594091940\",\"franchise\":\"0069\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594091940\",\"franchise\":\"0066\",\"round\":\"03\",\"player\":\"13589\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594092262\",\"franchise\":\"0064\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594093130\",\"franchise\":\"0063\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594106350\",\"franchise\":\"0061\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594119586\",\"franchise\":\"0072\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594133160\",\"franchise\":\"0067\",\"round\":\"03\",\"player\":\"7836\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594133202\",\"franchise\":\"0067\",\"round\":\"04\",\"player\":\"11671\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594133202\",\"franchise\":\"0072\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594136880\",\"franchise\":\"0061\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594137516\",\"franchise\":\"0063\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594137516\",\"franchise\":\"0064\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594137516\",\"franchise\":\"0066\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594144719\",\"franchise\":\"0069\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594144840\",\"franchise\":\"0062\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594144840\",\"franchise\":\"0065\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594148776\",\"franchise\":\"0070\",\"round\":\"04\",\"player\":\"13364\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594148871\",\"franchise\":\"0071\",\"round\":\"04\",\"player\":\"12610\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594149659\",\"franchise\":\"0068\",\"round\":\"04\",\"player\":\"12175\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594149684\",\"franchise\":\"0068\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594149748\",\"franchise\":\"0071\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594150103\",\"franchise\":\"0070\",\"round\":\"05\",\"player\":\"10700\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594150630\",\"franchise\":\"0065\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594151490\",\"franchise\":\"0062\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594164304\",\"franchise\":\"0069\",\"round\":\"05\",\"player\":\"14802\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594164304\",\"franchise\":\"0066\",\"round\":\"05\",\"player\":\"13164\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594164304\",\"franchise\":\"0064\",\"round\":\"05\",\"player\":\"11760\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594167154\",\"franchise\":\"0063\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594168351\",\"franchise\":\"0061\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594168736\",\"franchise\":\"0072\",\"round\":\"05\",\"player\":\"10697\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594169718\",\"franchise\":\"0067\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594170003\",\"franchise\":\"0067\",\"round\":\"06\",\"player\":\"10273\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594170003\",\"franchise\":\"0072\",\"round\":\"06\",\"player\":\"14797\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594170781\",\"franchise\":\"0061\",\"round\":\"06\",\"player\":\"14799\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594172110\",\"franchise\":\"0063\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594173806\",\"franchise\":\"0064\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594173806\",\"franchise\":\"0066\",\"round\":\"06\",\"player\":\"11886\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594181094\",\"franchise\":\"0069\",\"round\":\"06\",\"player\":\"12151\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594201932\",\"franchise\":\"0062\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594210787\",\"franchise\":\"0065\",\"round\":\"06\",\"player\":\"13668\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594211701\",\"franchise\":\"0070\",\"round\":\"06\",\"player\":\"11680\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594212888\",\"franchise\":\"0071\",\"round\":\"06\",\"player\":\"14059\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594213025\",\"franchise\":\"0068\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594213114\",\"franchise\":\"0068\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594214469\",\"franchise\":\"0071\",\"round\":\"07\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594214859\",\"franchise\":\"0070\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594214914\",\"franchise\":\"0065\",\"round\":\"07\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594217360\",\"franchise\":\"0062\",\"round\":\"07\",\"player\":\"12447\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594217360\",\"franchise\":\"0069\",\"round\":\"07\",\"player\":\"13590\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594223559\",\"franchise\":\"0066\",\"round\":\"07\",\"player\":\"11222\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594223702\",\"franchise\":\"0064\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594224630\",\"franchise\":\"0063\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594225416\",\"franchise\":\"0061\",\"round\":\"07\",\"player\":\"14067\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594225633\",\"franchise\":\"0072\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594232847\",\"franchise\":\"0067\",\"round\":\"07\",\"player\":\"14057\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594232944\",\"franchise\":\"0067\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594232944\",\"franchise\":\"0072\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233123\",\"franchise\":\"0061\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594237908\",\"franchise\":\"0063\",\"round\":\"08\",\"player\":\"9474\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594238045\",\"franchise\":\"0064\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594238223\",\"franchise\":\"0066\",\"round\":\"08\",\"player\":\"14777\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594238628\",\"franchise\":\"0069\",\"round\":\"08\",\"player\":\"12187\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594238883\",\"franchise\":\"0062\",\"round\":\"08\",\"player\":\"10729\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594239793\",\"franchise\":\"0065\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594239875\",\"franchise\":\"0070\",\"round\":\"08\",\"player\":\"11516\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594241310\",\"franchise\":\"0071\",\"round\":\"08\",\"player\":\"12176\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594241902\",\"franchise\":\"0068\",\"round\":\"08\",\"player\":\"13672\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594241929\",\"franchise\":\"0068\",\"round\":\"09\",\"player\":\"11644\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594242720\",\"franchise\":\"0071\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594243242\",\"franchise\":\"0070\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594243332\",\"franchise\":\"0065\",\"round\":\"09\",\"player\":\"14137\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594249593\",\"franchise\":\"0062\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594256244\",\"franchise\":\"0069\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594256721\",\"franchise\":\"0066\",\"round\":\"09\",\"player\":\"13605\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594256721\",\"franchise\":\"0064\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594260161\",\"franchise\":\"0063\",\"round\":\"09\",\"player\":\"13680\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594260289\",\"franchise\":\"0061\",\"round\":\"09\",\"player\":\"12650\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594261459\",\"franchise\":\"0072\",\"round\":\"09\",\"player\":\"10738\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594262412\",\"franchise\":\"0067\",\"round\":\"09\",\"player\":\"11747\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594262431\",\"franchise\":\"0067\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594262431\",\"franchise\":\"0072\",\"round\":\"10\",\"player\":\"13607\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594266037\",\"franchise\":\"0061\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594294103\",\"franchise\":\"0063\",\"round\":\"10\",\"player\":\"12647\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594294103\",\"franchise\":\"0064\",\"round\":\"10\",\"player\":\"7394\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298922\",\"franchise\":\"0066\",\"round\":\"10\",\"player\":\"10699\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594300414\",\"franchise\":\"0069\",\"round\":\"10\",\"player\":\"14113\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594300469\",\"franchise\":\"0062\",\"round\":\"10\",\"player\":\"12152\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594300525\",\"franchise\":\"0065\",\"round\":\"10\",\"player\":\"13290\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594301385\",\"franchise\":\"0070\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594301502\",\"franchise\":\"0071\",\"round\":\"10\",\"player\":\"9902\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594303718\",\"franchise\":\"0068\",\"round\":\"10\",\"player\":\"11674\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594304982\",\"franchise\":\"0068\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594307464\",\"franchise\":\"0071\",\"round\":\"11\",\"player\":\"11783\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594314272\",\"franchise\":\"0070\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594314272\",\"franchise\":\"0065\",\"round\":\"11\",\"player\":\"11670\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594314909\",\"franchise\":\"0062\",\"round\":\"11\",\"player\":\"13154\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594316508\",\"franchise\":\"0069\",\"round\":\"11\",\"player\":\"12677\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594316508\",\"franchise\":\"0066\",\"round\":\"11\",\"player\":\"14138\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594316508\",\"franchise\":\"0064\",\"round\":\"11\",\"player\":\"13679\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327449\",\"franchise\":\"0063\",\"round\":\"11\",\"player\":\"14810\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594327449\",\"franchise\":\"0061\",\"round\":\"11\",\"player\":\"14058\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327449\",\"franchise\":\"0072\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327985\",\"franchise\":\"0067\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594328146\",\"franchise\":\"0067\",\"round\":\"12\",\"player\":\"12658\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594328146\",\"franchise\":\"0072\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594329293\",\"franchise\":\"0061\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594331309\",\"franchise\":\"0063\",\"round\":\"12\",\"player\":\"9988\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594331614\",\"franchise\":\"0064\",\"round\":\"12\",\"player\":\"14122\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594342649\",\"franchise\":\"0066\",\"round\":\"12\",\"player\":\"14778\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594344726\",\"franchise\":\"0069\",\"round\":\"12\",\"player\":\"13234\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594344726\",\"franchise\":\"0062\",\"round\":\"12\",\"player\":\"13193\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594344726\",\"franchise\":\"0065\",\"round\":\"12\",\"player\":\"13814\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594344863\",\"franchise\":\"0070\",\"round\":\"12\",\"player\":\"10973\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594345603\",\"franchise\":\"0071\",\"round\":\"12\",\"player\":\"14798\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594346200\",\"franchise\":\"0068\",\"round\":\"12\",\"player\":\"13639\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594346694\",\"franchise\":\"0068\",\"round\":\"13\",\"player\":\"13378\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594347068\",\"franchise\":\"0071\",\"round\":\"13\",\"player\":\"14839\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594347171\",\"franchise\":\"0070\",\"round\":\"13\",\"player\":\"10413\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594347231\",\"franchise\":\"0065\",\"round\":\"13\",\"player\":\"14085\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594347385\",\"franchise\":\"0062\",\"round\":\"13\",\"player\":\"8062\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594385468\",\"franchise\":\"0069\",\"round\":\"13\",\"player\":\"14087\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594385468\",\"franchise\":\"0066\",\"round\":\"13\",\"player\":\"12634\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"13\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"13\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"13\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"13\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"13\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"14\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"14\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"14\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"14\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"14\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"14\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"14\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"14\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"14\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"14\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"14\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"14\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"15\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"15\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"15\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"15\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"15\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"15\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"15\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"15\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"15\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"15\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"15\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"15\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"16\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"16\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"16\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"16\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"16\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"16\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"16\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"16\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"16\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"16\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"16\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"16\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"17\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"17\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"17\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"17\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"17\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"17\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"17\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"17\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"17\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"17\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"17\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"17\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"18\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"18\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0067\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0072\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0061\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0063\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0064\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0066\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0069\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0062\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0065\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0070\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0071\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0068\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0068,0071,0070,0065,0062,0069,0066,0064,0063,0061,0072,0067,\"},{\"unit\":\"DIVISION06\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0082\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044242\",\"franchise\":\"0077\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594044242\",\"franchise\":\"0075\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594049651\",\"franchise\":\"0074\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"04\",\"comments\":\"Apologies for the delay - happy SFBX Day\"},{\"timestamp\":\"1594051414\",\"franchise\":\"0083\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594051414\",\"franchise\":\"0078\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051414\",\"franchise\":\"0079\",\"round\":\"01\",\"player\":\"13113\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051581\",\"franchise\":\"0081\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594051944\",\"franchise\":\"0076\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594052110\",\"franchise\":\"0084\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594053218\",\"franchise\":\"0080\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594053218\",\"franchise\":\"0073\",\"round\":\"01\",\"player\":\"10271\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594053948\",\"franchise\":\"0073\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594054785\",\"franchise\":\"0080\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594054983\",\"franchise\":\"0084\",\"round\":\"02\",\"player\":\"12626\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594055235\",\"franchise\":\"0076\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594055475\",\"franchise\":\"0081\",\"round\":\"02\",\"player\":\"13299\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594056657\",\"franchise\":\"0079\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594058748\",\"franchise\":\"0078\",\"round\":\"02\",\"player\":\"9099\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594061842\",\"franchise\":\"0083\",\"round\":\"02\",\"player\":\"11232\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594063513\",\"franchise\":\"0074\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594063513\",\"franchise\":\"0075\",\"round\":\"02\",\"player\":\"13319\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594066226\",\"franchise\":\"0077\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594066226\",\"franchise\":\"0082\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594066226\",\"franchise\":\"0082\",\"round\":\"03\",\"player\":\"12630\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067874\",\"franchise\":\"0077\",\"round\":\"03\",\"player\":\"14073\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594067874\",\"franchise\":\"0075\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067874\",\"franchise\":\"0074\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594068558\",\"franchise\":\"0083\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594071532\",\"franchise\":\"0078\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594071610\",\"franchise\":\"0079\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594071610\",\"franchise\":\"0081\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594072705\",\"franchise\":\"0076\",\"round\":\"03\",\"player\":\"11671\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594091885\",\"franchise\":\"0084\",\"round\":\"03\",\"player\":\"13589\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594094969\",\"franchise\":\"0080\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594119313\",\"franchise\":\"0073\",\"round\":\"03\",\"player\":\"7836\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594121229\",\"franchise\":\"0073\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594133198\",\"franchise\":\"0080\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594133872\",\"franchise\":\"0084\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594135026\",\"franchise\":\"0076\",\"round\":\"04\",\"player\":\"12175\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594135026\",\"franchise\":\"0081\",\"round\":\"04\",\"player\":\"11247\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594137540\",\"franchise\":\"0079\",\"round\":\"04\",\"player\":\"12150\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594143607\",\"franchise\":\"0078\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594148091\",\"franchise\":\"0083\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594150378\",\"franchise\":\"0074\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594153685\",\"franchise\":\"0075\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594161578\",\"franchise\":\"0077\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594183559\",\"franchise\":\"0082\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594183579\",\"franchise\":\"0082\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594210324\",\"franchise\":\"0077\",\"round\":\"05\",\"player\":\"13146\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594216568\",\"franchise\":\"0075\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594224167\",\"franchise\":\"0074\",\"round\":\"05\",\"player\":\"13364\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594224167\",\"franchise\":\"0083\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594224341\",\"franchise\":\"0078\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594224974\",\"franchise\":\"0079\",\"round\":\"05\",\"player\":\"11679\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594225069\",\"franchise\":\"0081\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594225760\",\"franchise\":\"0076\",\"round\":\"05\",\"player\":\"13164\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594225823\",\"franchise\":\"0084\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594228370\",\"franchise\":\"0080\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594229815\",\"franchise\":\"0073\",\"round\":\"05\",\"player\":\"14071\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594229840\",\"franchise\":\"0073\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594248863\",\"franchise\":\"0080\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594253835\",\"franchise\":\"0084\",\"round\":\"06\",\"player\":\"12678\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594254091\",\"franchise\":\"0076\",\"round\":\"06\",\"player\":\"13605\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594254236\",\"franchise\":\"0081\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594254322\",\"franchise\":\"0079\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594255119\",\"franchise\":\"0078\",\"round\":\"06\",\"player\":\"13668\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594256631\",\"franchise\":\"0083\",\"round\":\"06\",\"player\":\"14799\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594261622\",\"franchise\":\"0074\",\"round\":\"06\",\"player\":\"12187\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594262594\",\"franchise\":\"0075\",\"round\":\"06\",\"player\":\"14102\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594296544\",\"franchise\":\"0077\",\"round\":\"06\",\"player\":\"10276\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594303364\",\"franchise\":\"0082\",\"round\":\"06\",\"player\":\"10697\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303384\",\"franchise\":\"0082\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594311710\",\"franchise\":\"0077\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594321891\",\"franchise\":\"0075\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594326165\",\"franchise\":\"0074\",\"round\":\"07\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594334519\",\"franchise\":\"0083\",\"round\":\"07\",\"player\":\"12611\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594335119\",\"franchise\":\"0078\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594335211\",\"franchise\":\"0079\",\"round\":\"07\",\"player\":\"14059\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594336494\",\"franchise\":\"0081\",\"round\":\"07\",\"player\":\"13590\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594336709\",\"franchise\":\"0076\",\"round\":\"07\",\"player\":\"10729\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594336821\",\"franchise\":\"0084\",\"round\":\"07\",\"player\":\"12186\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594337671\",\"franchise\":\"0080\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594341574\",\"franchise\":\"0073\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594341624\",\"franchise\":\"0073\",\"round\":\"08\",\"player\":\"12447\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594342096\",\"franchise\":\"0080\",\"round\":\"08\",\"player\":\"7394\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594342214\",\"franchise\":\"0084\",\"round\":\"08\",\"player\":\"13672\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594344504\",\"franchise\":\"0076\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594344504\",\"franchise\":\"0081\",\"round\":\"08\",\"player\":\"11760\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594346132\",\"franchise\":\"0079\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594346277\",\"franchise\":\"0078\",\"round\":\"08\",\"player\":\"11680\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594384980\",\"franchise\":\"0083\",\"round\":\"08\",\"player\":\"14057\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594387391\",\"franchise\":\"0074\",\"round\":\"08\",\"player\":\"11644\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594387830\",\"franchise\":\"0075\",\"round\":\"08\",\"player\":\"14777\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"08\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"08\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"09\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"09\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"09\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"09\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"09\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"09\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"09\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"09\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"09\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"09\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"09\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"09\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"10\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"10\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"10\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"10\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"10\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"10\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"10\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"10\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"10\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"10\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"10\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"10\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"11\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"11\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"11\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"11\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"11\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"11\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"11\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"11\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"11\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"11\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"11\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"11\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"12\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"12\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"12\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"12\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"12\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"12\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"12\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"12\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"12\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"12\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"12\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"12\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"13\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"13\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"13\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"13\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"13\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"13\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"13\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"13\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"13\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"13\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"13\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"13\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"14\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"14\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"14\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"14\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"14\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"14\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"14\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"14\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"14\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"14\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"14\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"14\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"15\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"15\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"15\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"15\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"15\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"15\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"15\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"15\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"15\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"15\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"15\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"15\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"16\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"16\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"16\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"16\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"16\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"16\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"16\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"16\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"16\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"16\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"16\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"16\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"17\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"17\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"17\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"17\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"17\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"17\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"17\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"17\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"17\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"17\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"17\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"17\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"18\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"18\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0073\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0080\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0084\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0076\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0081\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0079\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0078\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0083\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0074\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0075\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0077\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0082\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0082,0077,0075,0074,0083,0078,0079,0081,0076,0084,0080,0073,\"},{\"unit\":\"DIVISION07\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044102\",\"franchise\":\"0090\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594046169\",\"franchise\":\"0092\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594047924\",\"franchise\":\"0089\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594048350\",\"franchise\":\"0094\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594048542\",\"franchise\":\"0095\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594049615\",\"franchise\":\"0093\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594050644\",\"franchise\":\"0091\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594050644\",\"franchise\":\"0086\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594052626\",\"franchise\":\"0088\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594054541\",\"franchise\":\"0087\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594055692\",\"franchise\":\"0085\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594059649\",\"franchise\":\"0096\",\"round\":\"01\",\"player\":\"13131\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594059681\",\"franchise\":\"0096\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594060728\",\"franchise\":\"0085\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594060779\",\"franchise\":\"0087\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594060972\",\"franchise\":\"0088\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594060972\",\"franchise\":\"0086\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594063035\",\"franchise\":\"0091\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594063357\",\"franchise\":\"0093\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594063941\",\"franchise\":\"0095\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594064567\",\"franchise\":\"0094\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594066177\",\"franchise\":\"0089\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594066327\",\"franchise\":\"0092\",\"round\":\"02\",\"player\":\"13671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594070194\",\"franchise\":\"0090\",\"round\":\"02\",\"player\":\"12610\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594070563\",\"franchise\":\"0090\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594076218\",\"franchise\":\"0092\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594081432\",\"franchise\":\"0089\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594081452\",\"franchise\":\"0094\",\"round\":\"03\",\"player\":\"12630\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594081872\",\"franchise\":\"0095\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594082289\",\"franchise\":\"0093\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594085169\",\"franchise\":\"0091\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594090130\",\"franchise\":\"0086\",\"round\":\"03\",\"player\":\"13635\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594090188\",\"franchise\":\"0088\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594090188\",\"franchise\":\"0087\",\"round\":\"03\",\"player\":\"14802\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594090283\",\"franchise\":\"0085\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594092481\",\"franchise\":\"0096\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594093101\",\"franchise\":\"0096\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594095131\",\"franchise\":\"0085\",\"round\":\"04\",\"player\":\"11192\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594095131\",\"franchise\":\"0087\",\"round\":\"04\",\"player\":\"9099\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594095428\",\"franchise\":\"0088\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594095428\",\"franchise\":\"0086\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594095865\",\"franchise\":\"0091\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594098395\",\"franchise\":\"0093\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594100847\",\"franchise\":\"0095\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594125209\",\"franchise\":\"0094\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594126669\",\"franchise\":\"0089\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594132366\",\"franchise\":\"0092\",\"round\":\"04\",\"player\":\"11671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594132366\",\"franchise\":\"0090\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594133088\",\"franchise\":\"0090\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594137327\",\"franchise\":\"0092\",\"round\":\"05\",\"player\":\"5848\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594138534\",\"franchise\":\"0089\",\"round\":\"05\",\"player\":\"13589\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594138667\",\"franchise\":\"0094\",\"round\":\"05\",\"player\":\"13364\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594138991\",\"franchise\":\"0095\",\"round\":\"05\",\"player\":\"11644\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594139182\",\"franchise\":\"0093\",\"round\":\"05\",\"player\":\"14799\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594140277\",\"franchise\":\"0091\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594144989\",\"franchise\":\"0086\",\"round\":\"05\",\"player\":\"10276\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594148090\",\"franchise\":\"0088\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594148090\",\"franchise\":\"0087\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594148090\",\"franchise\":\"0085\",\"round\":\"05\",\"player\":\"11640\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594148466\",\"franchise\":\"0096\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594149042\",\"franchise\":\"0096\",\"round\":\"06\",\"player\":\"10273\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594149341\",\"franchise\":\"0085\",\"round\":\"06\",\"player\":\"13590\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594149632\",\"franchise\":\"0087\",\"round\":\"06\",\"player\":\"14797\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594149900\",\"franchise\":\"0088\",\"round\":\"06\",\"player\":\"11760\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594152867\",\"franchise\":\"0086\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594153008\",\"franchise\":\"0091\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594153071\",\"franchise\":\"0093\",\"round\":\"06\",\"player\":\"14059\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594163386\",\"franchise\":\"0095\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594163531\",\"franchise\":\"0094\",\"round\":\"06\",\"player\":\"12447\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594164752\",\"franchise\":\"0089\",\"round\":\"06\",\"player\":\"14777\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594165969\",\"franchise\":\"0092\",\"round\":\"06\",\"player\":\"7401\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594173547\",\"franchise\":\"0090\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594173584\",\"franchise\":\"0090\",\"round\":\"07\",\"player\":\"13629\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594175657\",\"franchise\":\"0092\",\"round\":\"07\",\"player\":\"11228\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594176172\",\"franchise\":\"0089\",\"round\":\"07\",\"player\":\"13164\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594178282\",\"franchise\":\"0094\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594178531\",\"franchise\":\"0095\",\"round\":\"07\",\"player\":\"13668\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594179425\",\"franchise\":\"0093\",\"round\":\"07\",\"player\":\"12611\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594179467\",\"franchise\":\"0091\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594179467\",\"franchise\":\"0086\",\"round\":\"07\",\"player\":\"14800\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594181343\",\"franchise\":\"0088\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594187787\",\"franchise\":\"0087\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594206622\",\"franchise\":\"0085\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594217374\",\"franchise\":\"0096\",\"round\":\"07\",\"player\":\"10729\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594217687\",\"franchise\":\"0096\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594219593\",\"franchise\":\"0085\",\"round\":\"08\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594219593\",\"franchise\":\"0087\",\"round\":\"08\",\"player\":\"10697\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594225025\",\"franchise\":\"0088\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594225025\",\"franchise\":\"0086\",\"round\":\"08\",\"player\":\"14810\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594225399\",\"franchise\":\"0091\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594225546\",\"franchise\":\"0093\",\"round\":\"08\",\"player\":\"13672\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594226512\",\"franchise\":\"0095\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594226989\",\"franchise\":\"0094\",\"round\":\"08\",\"player\":\"9902\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594227698\",\"franchise\":\"0089\",\"round\":\"08\",\"player\":\"11680\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594232134\",\"franchise\":\"0092\",\"round\":\"08\",\"player\":\"13605\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594232351\",\"franchise\":\"0090\",\"round\":\"08\",\"player\":\"13680\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594232351\",\"franchise\":\"0090\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233081\",\"franchise\":\"0092\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594234481\",\"franchise\":\"0089\",\"round\":\"09\",\"player\":\"12650\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594236164\",\"franchise\":\"0094\",\"round\":\"09\",\"player\":\"12677\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594239894\",\"franchise\":\"0095\",\"round\":\"09\",\"player\":\"13607\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594239894\",\"franchise\":\"0093\",\"round\":\"09\",\"player\":\"14137\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594240070\",\"franchise\":\"0091\",\"round\":\"09\",\"player\":\"10261\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594240070\",\"franchise\":\"0086\",\"round\":\"09\",\"player\":\"7394\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594245855\",\"franchise\":\"0088\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594246052\",\"franchise\":\"0087\",\"round\":\"09\",\"player\":\"12152\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594246052\",\"franchise\":\"0085\",\"round\":\"09\",\"player\":\"14057\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594252378\",\"franchise\":\"0096\",\"round\":\"09\",\"player\":\"11674\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594252501\",\"franchise\":\"0096\",\"round\":\"10\",\"player\":\"14138\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594253158\",\"franchise\":\"0085\",\"round\":\"10\",\"player\":\"14122\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594253158\",\"franchise\":\"0087\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594254082\",\"franchise\":\"0088\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594254082\",\"franchise\":\"0086\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594254648\",\"franchise\":\"0091\",\"round\":\"10\",\"player\":\"10738\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594254837\",\"franchise\":\"0093\",\"round\":\"10\",\"player\":\"13646\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594255213\",\"franchise\":\"0095\",\"round\":\"10\",\"player\":\"14067\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594256425\",\"franchise\":\"0094\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594262710\",\"franchise\":\"0089\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594264605\",\"franchise\":\"0092\",\"round\":\"10\",\"player\":\"12647\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594269762\",\"franchise\":\"0090\",\"round\":\"10\",\"player\":\"13592\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594270106\",\"franchise\":\"0090\",\"round\":\"11\",\"player\":\"11747\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594301616\",\"franchise\":\"0092\",\"round\":\"11\",\"player\":\"14839\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594305735\",\"franchise\":\"0089\",\"round\":\"11\",\"player\":\"14832\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594305950\",\"franchise\":\"0094\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594306964\",\"franchise\":\"0095\",\"round\":\"11\",\"player\":\"9831\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594310841\",\"franchise\":\"0093\",\"round\":\"11\",\"player\":\"14778\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594311706\",\"franchise\":\"0091\",\"round\":\"11\",\"player\":\"13290\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594311706\",\"franchise\":\"0086\",\"round\":\"11\",\"player\":\"11783\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313710\",\"franchise\":\"0088\",\"round\":\"11\",\"player\":\"13234\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594313710\",\"franchise\":\"0087\",\"round\":\"11\",\"player\":\"13193\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594314035\",\"franchise\":\"0085\",\"round\":\"11\",\"player\":\"13678\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594316967\",\"franchise\":\"0096\",\"round\":\"11\",\"player\":\"9918\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594316980\",\"franchise\":\"0096\",\"round\":\"12\",\"player\":\"12157\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594317092\",\"franchise\":\"0085\",\"round\":\"12\",\"player\":\"14141\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594317092\",\"franchise\":\"0087\",\"round\":\"12\",\"player\":\"13154\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594320928\",\"franchise\":\"0088\",\"round\":\"12\",\"player\":\"14833\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594320928\",\"franchise\":\"0086\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594321451\",\"franchise\":\"0091\",\"round\":\"12\",\"player\":\"14058\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594321651\",\"franchise\":\"0093\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594323817\",\"franchise\":\"0095\",\"round\":\"12\",\"player\":\"14101\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594324764\",\"franchise\":\"0094\",\"round\":\"12\",\"player\":\"13612\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594325123\",\"franchise\":\"0089\",\"round\":\"12\",\"player\":\"14798\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594327969\",\"franchise\":\"0092\",\"round\":\"12\",\"player\":\"11516\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594346082\",\"franchise\":\"0090\",\"round\":\"12\",\"player\":\"14113\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594346691\",\"franchise\":\"0090\",\"round\":\"13\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594346928\",\"franchise\":\"0092\",\"round\":\"13\",\"player\":\"12184\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594348602\",\"franchise\":\"0089\",\"round\":\"13\",\"player\":\"13614\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594348787\",\"franchise\":\"0094\",\"round\":\"13\",\"player\":\"12658\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594349272\",\"franchise\":\"0095\",\"round\":\"13\",\"player\":\"12930\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594350900\",\"franchise\":\"0093\",\"round\":\"13\",\"player\":\"12197\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594352997\",\"franchise\":\"0091\",\"round\":\"13\",\"player\":\"11390\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594381910\",\"franchise\":\"0086\",\"round\":\"13\",\"player\":\"14126\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594382364\",\"franchise\":\"0088\",\"round\":\"13\",\"player\":\"14836\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594382364\",\"franchise\":\"0087\",\"round\":\"13\",\"player\":\"11670\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"13\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"13\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"14\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"14\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"14\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"14\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"14\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"14\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"14\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"14\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"14\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"14\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"14\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"14\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"15\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"15\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"15\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"15\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"15\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"15\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"15\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"15\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"15\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"15\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"15\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"15\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"16\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"16\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"16\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"16\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"16\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"16\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"16\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"16\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"16\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"16\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"16\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"16\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"17\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"17\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"17\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"17\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"17\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"17\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"17\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"17\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"17\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"17\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"17\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"17\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"18\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"18\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"18\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"18\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"18\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"18\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"18\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"18\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"18\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"18\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"18\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"18\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"19\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"19\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"19\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"19\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"19\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"19\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"19\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"19\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"19\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"19\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"19\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"19\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"20\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"20\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"20\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"20\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"20\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"20\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"20\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"20\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"20\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"20\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"20\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"20\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"21\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"21\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"21\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"21\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"21\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"21\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"21\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"21\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"21\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"21\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"21\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"21\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0096\",\"round\":\"22\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0085\",\"round\":\"22\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0087\",\"round\":\"22\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0088\",\"round\":\"22\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0086\",\"round\":\"22\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0091\",\"round\":\"22\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0093\",\"round\":\"22\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0095\",\"round\":\"22\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0094\",\"round\":\"22\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0089\",\"round\":\"22\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0092\",\"round\":\"22\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0090\",\"round\":\"22\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"}],\"round1DraftOrder\":\"0090,0092,0089,0094,0095,0093,0091,0086,0088,0087,0085,0096,\"}]},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"), 
-    date = structure(1594388287, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0, namelookup = 0.03424, 
-    connect = 0.0667, pretransfer = 0.131849, starttransfer = 0.657235, 
-    total = 0.681608)), class = "response")
+    content = charToRaw("{\"draftResults\":{\"draftUnit\":[{\"unit\":\"DIVISION00\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044005\",\"franchise\":\"0001\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594044005\",\"franchise\":\"0009\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045551\",\"franchise\":\"0003\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594045551\",\"franchise\":\"0002\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045551\",\"franchise\":\"0007\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045605\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594049693\",\"franchise\":\"0006\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594053069\",\"franchise\":\"0004\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594054539\",\"franchise\":\"0008\",\"round\":\"01\",\"player\":\"4925\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594054539\",\"franchise\":\"0011\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594054539\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"13113\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067937\",\"franchise\":\"0005\",\"round\":\"01\",\"player\":\"11675\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594068367\",\"franchise\":\"0005\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594068367\",\"franchise\":\"0012\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594068367\",\"franchise\":\"0011\",\"round\":\"02\",\"player\":\"12626\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594070060\",\"franchise\":\"0008\",\"round\":\"02\",\"player\":\"13299\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594072636\",\"franchise\":\"0004\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594073183\",\"franchise\":\"0006\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594073394\",\"franchise\":\"0010\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594073614\",\"franchise\":\"0007\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594075438\",\"franchise\":\"0002\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594076114\",\"franchise\":\"0003\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594076114\",\"franchise\":\"0009\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594076114\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"13319\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594076114\",\"franchise\":\"0001\",\"round\":\"03\",\"player\":\"7394\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594076949\",\"franchise\":\"0009\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594077561\",\"franchise\":\"0003\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594078005\",\"franchise\":\"0002\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594078005\",\"franchise\":\"0007\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594078252\",\"franchise\":\"0010\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594079127\",\"franchise\":\"0006\",\"round\":\"03\",\"player\":\"14802\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594082847\",\"franchise\":\"0004\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594083190\",\"franchise\":\"0008\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594084029\",\"franchise\":\"0011\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594084029\",\"franchise\":\"0012\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594123328\",\"franchise\":\"0005\",\"round\":\"03\",\"player\":\"11679\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594123388\",\"franchise\":\"0005\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594123388\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"9099\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594123388\",\"franchise\":\"0011\",\"round\":\"04\",\"player\":\"14803\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594123388\",\"franchise\":\"0008\",\"round\":\"04\",\"player\":\"12263\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594125019\",\"franchise\":\"0004\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594134889\",\"franchise\":\"0006\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594136900\",\"franchise\":\"0010\",\"round\":\"04\",\"player\":\"13589\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594136900\",\"franchise\":\"0007\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594139268\",\"franchise\":\"0002\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594144098\",\"franchise\":\"0003\",\"round\":\"04\",\"player\":\"14799\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594144179\",\"franchise\":\"0009\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594144179\",\"franchise\":\"0001\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594150420\",\"franchise\":\"0001\",\"round\":\"05\",\"player\":\"13156\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594150420\",\"franchise\":\"0009\",\"round\":\"05\",\"player\":\"7836\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594150964\",\"franchise\":\"0003\",\"round\":\"05\",\"player\":\"14059\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594151601\",\"franchise\":\"0002\",\"round\":\"05\",\"player\":\"11671\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594151894\",\"franchise\":\"0007\",\"round\":\"05\",\"player\":\"10700\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594152121\",\"franchise\":\"0010\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594153012\",\"franchise\":\"0006\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594154541\",\"franchise\":\"0004\",\"round\":\"05\",\"player\":\"13146\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594155359\",\"franchise\":\"0008\",\"round\":\"05\",\"player\":\"13668\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594155359\",\"franchise\":\"0011\",\"round\":\"05\",\"player\":\"11228\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594155359\",\"franchise\":\"0012\",\"round\":\"05\",\"player\":\"13164\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594156761\",\"franchise\":\"0005\",\"round\":\"05\",\"player\":\"12447\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594156832\",\"franchise\":\"0005\",\"round\":\"06\",\"player\":\"14102\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594157007\",\"franchise\":\"0012\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594158567\",\"franchise\":\"0011\",\"round\":\"06\",\"player\":\"13364\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594158567\",\"franchise\":\"0008\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594162940\",\"franchise\":\"0004\",\"round\":\"06\",\"player\":\"14057\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594163354\",\"franchise\":\"0006\",\"round\":\"06\",\"player\":\"13590\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594163558\",\"franchise\":\"0010\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594163558\",\"franchise\":\"0007\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594165252\",\"franchise\":\"0002\",\"round\":\"06\",\"player\":\"13629\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594165943\",\"franchise\":\"0003\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594167282\",\"franchise\":\"0009\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594167282\",\"franchise\":\"0001\",\"round\":\"06\",\"player\":\"11747\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594167282\",\"franchise\":\"0001\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594167405\",\"franchise\":\"0009\",\"round\":\"07\",\"player\":\"13605\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594167560\",\"franchise\":\"0003\",\"round\":\"07\",\"player\":\"13189\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594168622\",\"franchise\":\"0002\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594168696\",\"franchise\":\"0007\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594169516\",\"franchise\":\"0010\",\"round\":\"07\",\"player\":\"9902\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594170796\",\"franchise\":\"0006\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594172486\",\"franchise\":\"0004\",\"round\":\"07\",\"player\":\"10261\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594173383\",\"franchise\":\"0008\",\"round\":\"07\",\"player\":\"12186\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594173646\",\"franchise\":\"0011\",\"round\":\"07\",\"player\":\"12611\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594173646\",\"franchise\":\"0012\",\"round\":\"07\",\"player\":\"12676\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594174012\",\"franchise\":\"0005\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594174075\",\"franchise\":\"0005\",\"round\":\"08\",\"player\":\"12176\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594179438\",\"franchise\":\"0012\",\"round\":\"08\",\"player\":\"10729\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594179438\",\"franchise\":\"0011\",\"round\":\"08\",\"player\":\"11760\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594185694\",\"franchise\":\"0008\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594185694\",\"franchise\":\"0004\",\"round\":\"08\",\"player\":\"10697\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594185694\",\"franchise\":\"0006\",\"round\":\"08\",\"player\":\"11680\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594186471\",\"franchise\":\"0010\",\"round\":\"08\",\"player\":\"10273\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594186471\",\"franchise\":\"0007\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594187163\",\"franchise\":\"0002\",\"round\":\"08\",\"player\":\"13138\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594209371\",\"franchise\":\"0003\",\"round\":\"08\",\"player\":\"10738\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594209426\",\"franchise\":\"0009\",\"round\":\"08\",\"player\":\"14105\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594209426\",\"franchise\":\"0001\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594219048\",\"franchise\":\"0001\",\"round\":\"09\",\"player\":\"9474\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594219048\",\"franchise\":\"0009\",\"round\":\"09\",\"player\":\"13672\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594219446\",\"franchise\":\"0003\",\"round\":\"09\",\"player\":\"14777\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594221769\",\"franchise\":\"0002\",\"round\":\"09\",\"player\":\"13680\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594221797\",\"franchise\":\"0007\",\"round\":\"09\",\"player\":\"11674\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594222119\",\"franchise\":\"0010\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594222119\",\"franchise\":\"0006\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594226709\",\"franchise\":\"0004\",\"round\":\"09\",\"player\":\"14839\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594228103\",\"franchise\":\"0008\",\"round\":\"09\",\"player\":\"11644\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594232128\",\"franchise\":\"0011\",\"round\":\"09\",\"player\":\"14067\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594232128\",\"franchise\":\"0012\",\"round\":\"09\",\"player\":\"12677\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233202\",\"franchise\":\"0005\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594233259\",\"franchise\":\"0005\",\"round\":\"10\",\"player\":\"11640\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594233259\",\"franchise\":\"0012\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233259\",\"franchise\":\"0011\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594234294\",\"franchise\":\"0008\",\"round\":\"10\",\"player\":\"14138\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594234414\",\"franchise\":\"0004\",\"round\":\"10\",\"player\":\"14137\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594234414\",\"franchise\":\"0006\",\"round\":\"10\",\"player\":\"9662\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594234944\",\"franchise\":\"0010\",\"round\":\"10\",\"player\":\"13678\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594235012\",\"franchise\":\"0007\",\"round\":\"10\",\"player\":\"14832\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594235659\",\"franchise\":\"0002\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594235659\",\"franchise\":\"0003\",\"round\":\"10\",\"player\":\"14810\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594236950\",\"franchise\":\"0009\",\"round\":\"10\",\"player\":\"14058\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594243341\",\"franchise\":\"0001\",\"round\":\"10\",\"player\":\"12152\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594246074\",\"franchise\":\"0001\",\"round\":\"11\",\"player\":\"12658\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594246074\",\"franchise\":\"0009\",\"round\":\"11\",\"player\":\"12647\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594246074\",\"franchise\":\"0003\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594248167\",\"franchise\":\"0002\",\"round\":\"11\",\"player\":\"13606\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594248644\",\"franchise\":\"0007\",\"round\":\"11\",\"player\":\"14208\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594248876\",\"franchise\":\"0010\",\"round\":\"11\",\"player\":\"13607\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594249886\",\"franchise\":\"0006\",\"round\":\"11\",\"player\":\"8687\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594257812\",\"franchise\":\"0004\",\"round\":\"11\",\"player\":\"14122\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594257812\",\"franchise\":\"0008\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594257812\",\"franchise\":\"0011\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594257812\",\"franchise\":\"0012\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594257847\",\"franchise\":\"0005\",\"round\":\"11\",\"player\":\"13614\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594258423\",\"franchise\":\"0005\",\"round\":\"12\",\"player\":\"11695\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594258423\",\"franchise\":\"0012\",\"round\":\"12\",\"player\":\"13633\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594258745\",\"franchise\":\"0011\",\"round\":\"12\",\"player\":\"14136\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594258745\",\"franchise\":\"0008\",\"round\":\"12\",\"player\":\"13290\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0004\",\"round\":\"12\",\"player\":\"14805\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594298487\",\"franchise\":\"0006\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0010\",\"round\":\"12\",\"player\":\"14113\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0007\",\"round\":\"12\",\"player\":\"14141\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0002\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298487\",\"franchise\":\"0003\",\"round\":\"12\",\"player\":\"9918\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594301429\",\"franchise\":\"0009\",\"round\":\"12\",\"player\":\"13154\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594303505\",\"franchise\":\"0001\",\"round\":\"12\",\"player\":\"11670\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303570\",\"franchise\":\"0001\",\"round\":\"13\",\"player\":\"10413\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594304569\",\"franchise\":\"0009\",\"round\":\"13\",\"player\":\"9988\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594304569\",\"franchise\":\"0003\",\"round\":\"13\",\"player\":\"11390\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594308035\",\"franchise\":\"0002\",\"round\":\"13\",\"player\":\"13679\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594308035\",\"franchise\":\"0007\",\"round\":\"13\",\"player\":\"14085\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594308961\",\"franchise\":\"0010\",\"round\":\"13\",\"player\":\"11783\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594308961\",\"franchise\":\"0006\",\"round\":\"13\",\"player\":\"13236\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313054\",\"franchise\":\"0004\",\"round\":\"13\",\"player\":\"14833\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594313054\",\"franchise\":\"0008\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313054\",\"franchise\":\"0011\",\"round\":\"13\",\"player\":\"13814\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313054\",\"franchise\":\"0012\",\"round\":\"13\",\"player\":\"8062\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594315799\",\"franchise\":\"0005\",\"round\":\"13\",\"player\":\"9831\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594316153\",\"franchise\":\"0005\",\"round\":\"14\",\"player\":\"12197\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594317476\",\"franchise\":\"0012\",\"round\":\"14\",\"player\":\"14140\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594317476\",\"franchise\":\"0011\",\"round\":\"14\",\"player\":\"13234\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594318338\",\"franchise\":\"0008\",\"round\":\"14\",\"player\":\"14087\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594321745\",\"franchise\":\"0004\",\"round\":\"14\",\"player\":\"14834\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594322122\",\"franchise\":\"0006\",\"round\":\"14\",\"player\":\"13188\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594322696\",\"franchise\":\"0010\",\"round\":\"14\",\"player\":\"14101\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594322696\",\"franchise\":\"0007\",\"round\":\"14\",\"player\":\"13639\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594323625\",\"franchise\":\"0002\",\"round\":\"14\",\"player\":\"14836\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594323625\",\"franchise\":\"0003\",\"round\":\"14\",\"player\":\"10699\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594324554\",\"franchise\":\"0009\",\"round\":\"14\",\"player\":\"14840\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594327094\",\"franchise\":\"0001\",\"round\":\"14\",\"player\":\"10308\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594327162\",\"franchise\":\"0001\",\"round\":\"15\",\"player\":\"10312\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594327348\",\"franchise\":\"0009\",\"round\":\"15\",\"player\":\"14807\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594327348\",\"franchise\":\"0003\",\"round\":\"15\",\"player\":\"14126\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327720\",\"franchise\":\"0002\",\"round\":\"15\",\"player\":\"14778\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594328142\",\"franchise\":\"0007\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594328891\",\"franchise\":\"0010\",\"round\":\"15\",\"player\":\"12157\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594330980\",\"franchise\":\"0006\",\"round\":\"15\",\"player\":\"14123\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594331061\",\"franchise\":\"0004\",\"round\":\"15\",\"player\":\"13622\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594334567\",\"franchise\":\"0008\",\"round\":\"15\",\"player\":\"14808\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594334567\",\"franchise\":\"0011\",\"round\":\"15\",\"player\":\"11186\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594334567\",\"franchise\":\"0012\",\"round\":\"15\",\"player\":\"12930\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594335485\",\"franchise\":\"0005\",\"round\":\"15\",\"player\":\"11193\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594335576\",\"franchise\":\"0005\",\"round\":\"16\",\"player\":\"13157\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594335576\",\"franchise\":\"0012\",\"round\":\"16\",\"player\":\"11660\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594335576\",\"franchise\":\"0011\",\"round\":\"16\",\"player\":\"11337\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594342619\",\"franchise\":\"0008\",\"round\":\"16\",\"player\":\"14843\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594344437\",\"franchise\":\"0004\",\"round\":\"16\",\"player\":\"13631\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594345341\",\"franchise\":\"0006\",\"round\":\"16\",\"player\":\"14112\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594345988\",\"franchise\":\"0010\",\"round\":\"16\",\"player\":\"14143\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594345988\",\"franchise\":\"0007\",\"round\":\"16\",\"player\":\"14842\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594348662\",\"franchise\":\"0002\",\"round\":\"16\",\"player\":\"14852\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594382225\",\"franchise\":\"0003\",\"round\":\"16\",\"player\":\"13763\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594382859\",\"franchise\":\"0009\",\"round\":\"16\",\"player\":\"9925\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594397252\",\"franchise\":\"0001\",\"round\":\"16\",\"player\":\"13620\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594397275\",\"franchise\":\"0001\",\"round\":\"17\",\"player\":\"9075\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594398485\",\"franchise\":\"0009\",\"round\":\"17\",\"player\":\"14804\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594398485\",\"franchise\":\"0003\",\"round\":\"17\",\"player\":\"13153\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594398967\",\"franchise\":\"0002\",\"round\":\"17\",\"player\":\"13632\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594398967\",\"franchise\":\"0007\",\"round\":\"17\",\"player\":\"14844\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594400255\",\"franchise\":\"0010\",\"round\":\"17\",\"player\":\"14075\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594400255\",\"franchise\":\"0006\",\"round\":\"17\",\"player\":\"14779\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594401167\",\"franchise\":\"0004\",\"round\":\"17\",\"player\":\"7393\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594403086\",\"franchise\":\"0008\",\"round\":\"17\",\"player\":\"14838\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594403086\",\"franchise\":\"0011\",\"round\":\"17\",\"player\":\"10722\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594404088\",\"franchise\":\"0012\",\"round\":\"17\",\"player\":\"8658\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594407858\",\"franchise\":\"0005\",\"round\":\"17\",\"player\":\"13115\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594407949\",\"franchise\":\"0005\",\"round\":\"18\",\"player\":\"11761\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594407949\",\"franchise\":\"0012\",\"round\":\"18\",\"player\":\"13158\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594407949\",\"franchise\":\"0011\",\"round\":\"18\",\"player\":\"13139\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594408269\",\"franchise\":\"0008\",\"round\":\"18\",\"player\":\"11657\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594415593\",\"franchise\":\"0004\",\"round\":\"18\",\"player\":\"14846\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594415804\",\"franchise\":\"0006\",\"round\":\"18\",\"player\":\"10973\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594417895\",\"franchise\":\"0010\",\"round\":\"18\",\"player\":\"13608\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594417895\",\"franchise\":\"0007\",\"round\":\"18\",\"player\":\"12141\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594419506\",\"franchise\":\"0002\",\"round\":\"18\",\"player\":\"13192\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594419506\",\"franchise\":\"0003\",\"round\":\"18\",\"player\":\"14125\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594421406\",\"franchise\":\"0009\",\"round\":\"18\",\"player\":\"12205\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594422974\",\"franchise\":\"0001\",\"round\":\"18\",\"player\":\"13613\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594423042\",\"franchise\":\"0001\",\"round\":\"19\",\"player\":\"12257\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594423088\",\"franchise\":\"0009\",\"round\":\"19\",\"player\":\"12391\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594433806\",\"franchise\":\"0003\",\"round\":\"19\",\"player\":\"14093\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594433806\",\"franchise\":\"0002\",\"round\":\"19\",\"player\":\"14835\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594433806\",\"franchise\":\"0007\",\"round\":\"19\",\"player\":\"14613\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594434159\",\"franchise\":\"0010\",\"round\":\"19\",\"player\":\"14837\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594436960\",\"franchise\":\"0006\",\"round\":\"19\",\"player\":\"11250\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594437410\",\"franchise\":\"0004\",\"round\":\"19\",\"player\":\"14195\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594449812\",\"franchise\":\"0008\",\"round\":\"19\",\"player\":\"14072\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594449812\",\"franchise\":\"0011\",\"round\":\"19\",\"player\":\"11227\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594449812\",\"franchise\":\"0012\",\"round\":\"19\",\"player\":\"14936\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594449812\",\"franchise\":\"0005\",\"round\":\"19\",\"player\":\"13418\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594483208\",\"franchise\":\"0005\",\"round\":\"20\",\"player\":\"12317\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594483208\",\"franchise\":\"0012\",\"round\":\"20\",\"player\":\"13809\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594483208\",\"franchise\":\"0011\",\"round\":\"20\",\"player\":\"14841\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594483208\",\"franchise\":\"0008\",\"round\":\"20\",\"player\":\"14801\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594483208\",\"franchise\":\"0004\",\"round\":\"20\",\"player\":\"10723\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594484460\",\"franchise\":\"0006\",\"round\":\"20\",\"player\":\"12386\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594485501\",\"franchise\":\"0010\",\"round\":\"20\",\"player\":\"13168\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594485501\",\"franchise\":\"0007\",\"round\":\"20\",\"player\":\"14142\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594490752\",\"franchise\":\"0002\",\"round\":\"20\",\"player\":\"14806\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594490752\",\"franchise\":\"0003\",\"round\":\"20\",\"player\":\"14305\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594490890\",\"franchise\":\"0009\",\"round\":\"20\",\"player\":\"10708\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594504396\",\"franchise\":\"0001\",\"round\":\"20\",\"player\":\"9308\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594504424\",\"franchise\":\"0001\",\"round\":\"21\",\"player\":\"12857\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594504424\",\"franchise\":\"0009\",\"round\":\"21\",\"player\":\"13155\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594504424\",\"franchise\":\"0003\",\"round\":\"21\",\"player\":\"11257\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594504556\",\"franchise\":\"0002\",\"round\":\"21\",\"player\":\"13868\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594504556\",\"franchise\":\"0007\",\"round\":\"21\",\"player\":\"14783\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594504796\",\"franchise\":\"0010\",\"round\":\"21\",\"player\":\"14114\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594505767\",\"franchise\":\"0006\",\"round\":\"21\",\"player\":\"10389\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594508517\",\"franchise\":\"0004\",\"round\":\"21\",\"player\":\"14858\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594512365\",\"franchise\":\"0008\",\"round\":\"21\",\"player\":\"13645\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594512365\",\"franchise\":\"0011\",\"round\":\"21\",\"player\":\"11239\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594512365\",\"franchise\":\"0012\",\"round\":\"21\",\"player\":\"13617\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594524407\",\"franchise\":\"0005\",\"round\":\"21\",\"player\":\"11647\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594524508\",\"franchise\":\"0005\",\"round\":\"22\",\"player\":\"14116\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594524508\",\"franchise\":\"0012\",\"round\":\"22\",\"player\":\"12785\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594524508\",\"franchise\":\"0011\",\"round\":\"22\",\"player\":\"15033\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594525548\",\"franchise\":\"0008\",\"round\":\"22\",\"player\":\"13768\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594525644\",\"franchise\":\"0004\",\"round\":\"22\",\"player\":\"14086\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594531654\",\"franchise\":\"0006\",\"round\":\"22\",\"player\":\"14121\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594535327\",\"franchise\":\"0010\",\"round\":\"22\",\"player\":\"13148\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594535327\",\"franchise\":\"0007\",\"round\":\"22\",\"player\":\"14867\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594549296\",\"franchise\":\"0002\",\"round\":\"22\",\"player\":\"14107\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594549296\",\"franchise\":\"0003\",\"round\":\"22\",\"player\":\"13240\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594552355\",\"franchise\":\"0009\",\"round\":\"22\",\"player\":\"14082\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594584055\",\"franchise\":\"0001\",\"round\":\"22\",\"player\":\"0000\",\"pick\":\"12\",\"comments\":\"[Timer expired: Pick skipped] \"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION00_draft_results.xml\",\"round1DraftOrder\":\"0001,0009,0003,0002,0007,0010,0006,0004,0008,0011,0012,0005,\"},{\"unit\":\"DIVISION01\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044100\",\"franchise\":\"0015\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044100\",\"franchise\":\"0014\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044398\",\"franchise\":\"0013\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594044398\",\"franchise\":\"0022\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045859\",\"franchise\":\"0016\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594046226\",\"franchise\":\"0024\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594047273\",\"franchise\":\"0019\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594047574\",\"franchise\":\"0017\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594048954\",\"franchise\":\"0021\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594049598\",\"franchise\":\"0023\",\"round\":\"01\",\"player\":\"11675\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594078825\",\"franchise\":\"0020\",\"round\":\"01\",\"player\":\"11232\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594078825\",\"franchise\":\"0018\",\"round\":\"01\",\"player\":\"10271\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594078825\",\"franchise\":\"0018\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594078968\",\"franchise\":\"0020\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594078968\",\"franchise\":\"0023\",\"round\":\"02\",\"player\":\"13299\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594079085\",\"franchise\":\"0021\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594079202\",\"franchise\":\"0017\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594097659\",\"franchise\":\"0019\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594097737\",\"franchise\":\"0024\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594097737\",\"franchise\":\"0016\",\"round\":\"02\",\"player\":\"13671\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594102655\",\"franchise\":\"0022\",\"round\":\"02\",\"player\":\"12626\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594103777\",\"franchise\":\"0013\",\"round\":\"02\",\"player\":\"12801\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594103777\",\"franchise\":\"0014\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594128335\",\"franchise\":\"0015\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594128427\",\"franchise\":\"0015\",\"round\":\"03\",\"player\":\"14079\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594133046\",\"franchise\":\"0014\",\"round\":\"03\",\"player\":\"13610\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594136712\",\"franchise\":\"0013\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594142388\",\"franchise\":\"0022\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594143267\",\"franchise\":\"0016\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594145301\",\"franchise\":\"0024\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594148226\",\"franchise\":\"0019\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594148545\",\"franchise\":\"0017\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594149335\",\"franchise\":\"0021\",\"round\":\"03\",\"player\":\"13146\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594156860\",\"franchise\":\"0023\",\"round\":\"03\",\"player\":\"14802\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594157838\",\"franchise\":\"0020\",\"round\":\"03\",\"player\":\"11671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594157838\",\"franchise\":\"0018\",\"round\":\"03\",\"player\":\"13364\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594157838\",\"franchise\":\"0018\",\"round\":\"04\",\"player\":\"12263\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594157934\",\"franchise\":\"0020\",\"round\":\"04\",\"player\":\"9099\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594158287\",\"franchise\":\"0023\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594158566\",\"franchise\":\"0021\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594158790\",\"franchise\":\"0017\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594166872\",\"franchise\":\"0019\",\"round\":\"04\",\"player\":\"12610\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594167941\",\"franchise\":\"0024\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594167941\",\"franchise\":\"0016\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594172528\",\"franchise\":\"0022\",\"round\":\"04\",\"player\":\"13164\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594175574\",\"franchise\":\"0013\",\"round\":\"04\",\"player\":\"13129\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594184613\",\"franchise\":\"0014\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594184707\",\"franchise\":\"0015\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594184784\",\"franchise\":\"0015\",\"round\":\"05\",\"player\":\"13635\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594185312\",\"franchise\":\"0014\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594186173\",\"franchise\":\"0013\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594188045\",\"franchise\":\"0022\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594188045\",\"franchise\":\"0016\",\"round\":\"05\",\"player\":\"9431\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594216393\",\"franchise\":\"0024\",\"round\":\"05\",\"player\":\"13589\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594221833\",\"franchise\":\"0019\",\"round\":\"05\",\"player\":\"12151\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594222660\",\"franchise\":\"0017\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594222791\",\"franchise\":\"0021\",\"round\":\"05\",\"player\":\"11228\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594239177\",\"franchise\":\"0023\",\"round\":\"05\",\"player\":\"5848\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594240781\",\"franchise\":\"0020\",\"round\":\"05\",\"player\":\"14799\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594240781\",\"franchise\":\"0018\",\"round\":\"05\",\"player\":\"11222\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594240781\",\"franchise\":\"0018\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594241045\",\"franchise\":\"0020\",\"round\":\"06\",\"player\":\"13629\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594246972\",\"franchise\":\"0023\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594249031\",\"franchise\":\"0021\",\"round\":\"06\",\"player\":\"13668\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594249142\",\"franchise\":\"0017\",\"round\":\"06\",\"player\":\"14059\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594256488\",\"franchise\":\"0019\",\"round\":\"06\",\"player\":\"12187\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594258530\",\"franchise\":\"0024\",\"round\":\"06\",\"player\":\"13189\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594258530\",\"franchise\":\"0016\",\"round\":\"06\",\"player\":\"12176\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594258530\",\"franchise\":\"0022\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594259492\",\"franchise\":\"0013\",\"round\":\"06\",\"player\":\"14102\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594261994\",\"franchise\":\"0014\",\"round\":\"06\",\"player\":\"14109\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594264370\",\"franchise\":\"0015\",\"round\":\"06\",\"player\":\"7401\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594264563\",\"franchise\":\"0015\",\"round\":\"07\",\"player\":\"14105\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594265146\",\"franchise\":\"0014\",\"round\":\"07\",\"player\":\"10697\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594265561\",\"franchise\":\"0013\",\"round\":\"07\",\"player\":\"14777\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594266664\",\"franchise\":\"0022\",\"round\":\"07\",\"player\":\"14080\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594266664\",\"franchise\":\"0016\",\"round\":\"07\",\"player\":\"12678\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594268776\",\"franchise\":\"0024\",\"round\":\"07\",\"player\":\"13680\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594277105\",\"franchise\":\"0019\",\"round\":\"07\",\"player\":\"11760\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594286060\",\"franchise\":\"0017\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594288250\",\"franchise\":\"0021\",\"round\":\"07\",\"player\":\"11644\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594301477\",\"franchise\":\"0023\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594309172\",\"franchise\":\"0020\",\"round\":\"07\",\"player\":\"12676\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594309172\",\"franchise\":\"0018\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594309172\",\"franchise\":\"0018\",\"round\":\"08\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594309266\",\"franchise\":\"0020\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594314058\",\"franchise\":\"0023\",\"round\":\"08\",\"player\":\"13590\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594315203\",\"franchise\":\"0021\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594315358\",\"franchise\":\"0017\",\"round\":\"08\",\"player\":\"13605\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594317354\",\"franchise\":\"0019\",\"round\":\"08\",\"player\":\"13138\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594325253\",\"franchise\":\"0024\",\"round\":\"08\",\"player\":\"13606\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594325253\",\"franchise\":\"0016\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594325357\",\"franchise\":\"0022\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594330160\",\"franchise\":\"0013\",\"round\":\"08\",\"player\":\"14057\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594338238\",\"franchise\":\"0014\",\"round\":\"08\",\"player\":\"12447\",\"pick\":\"11\",\"comments\":\"Going for the biscuit\"},{\"timestamp\":\"1594338238\",\"franchise\":\"0015\",\"round\":\"08\",\"player\":\"7394\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594340318\",\"franchise\":\"0015\",\"round\":\"09\",\"player\":\"10729\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594344421\",\"franchise\":\"0014\",\"round\":\"09\",\"player\":\"12650\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594346023\",\"franchise\":\"0013\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594354230\",\"franchise\":\"0022\",\"round\":\"09\",\"player\":\"9902\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594354230\",\"franchise\":\"0016\",\"round\":\"09\",\"player\":\"14067\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594356047\",\"franchise\":\"0024\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594359539\",\"franchise\":\"0019\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594359539\",\"franchise\":\"0017\",\"round\":\"09\",\"player\":\"14833\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594377280\",\"franchise\":\"0021\",\"round\":\"09\",\"player\":\"10738\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594386348\",\"franchise\":\"0023\",\"round\":\"09\",\"player\":\"13672\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594399879\",\"franchise\":\"0020\",\"round\":\"09\",\"player\":\"10413\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594399879\",\"franchise\":\"0018\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594399879\",\"franchise\":\"0018\",\"round\":\"10\",\"player\":\"12184\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594399905\",\"franchise\":\"0020\",\"round\":\"10\",\"player\":\"14058\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594405214\",\"franchise\":\"0023\",\"round\":\"10\",\"player\":\"14223\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594405544\",\"franchise\":\"0021\",\"round\":\"10\",\"player\":\"12152\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594407636\",\"franchise\":\"0017\",\"round\":\"10\",\"player\":\"14779\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594409379\",\"franchise\":\"0019\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594423363\",\"franchise\":\"0024\",\"round\":\"10\",\"player\":\"11674\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594423363\",\"franchise\":\"0016\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594423363\",\"franchise\":\"0022\",\"round\":\"10\",\"player\":\"9662\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594423910\",\"franchise\":\"0013\",\"round\":\"10\",\"player\":\"14137\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594427140\",\"franchise\":\"0014\",\"round\":\"10\",\"player\":\"14138\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594428633\",\"franchise\":\"0015\",\"round\":\"10\",\"player\":\"10699\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594428737\",\"franchise\":\"0015\",\"round\":\"11\",\"player\":\"13193\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594429056\",\"franchise\":\"0014\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594434109\",\"franchise\":\"0013\",\"round\":\"11\",\"player\":\"14208\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594435231\",\"franchise\":\"0022\",\"round\":\"11\",\"player\":\"12647\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594435231\",\"franchise\":\"0016\",\"round\":\"11\",\"player\":\"14810\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594437930\",\"franchise\":\"0024\",\"round\":\"11\",\"player\":\"13607\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594446728\",\"franchise\":\"0019\",\"round\":\"11\",\"player\":\"13290\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594446728\",\"franchise\":\"0017\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594454600\",\"franchise\":\"0021\",\"round\":\"11\",\"player\":\"12677\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594477332\",\"franchise\":\"0023\",\"round\":\"11\",\"player\":\"13674\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594484203\",\"franchise\":\"0020\",\"round\":\"11\",\"player\":\"8687\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594484203\",\"franchise\":\"0018\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594484203\",\"franchise\":\"0018\",\"round\":\"12\",\"player\":\"11747\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594484299\",\"franchise\":\"0020\",\"round\":\"12\",\"player\":\"9918\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594490038\",\"franchise\":\"0023\",\"round\":\"12\",\"player\":\"13234\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594490186\",\"franchise\":\"0021\",\"round\":\"12\",\"player\":\"13679\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594491010\",\"franchise\":\"0017\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594491010\",\"franchise\":\"0019\",\"round\":\"12\",\"player\":\"12658\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594491781\",\"franchise\":\"0024\",\"round\":\"12\",\"player\":\"14798\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594491781\",\"franchise\":\"0016\",\"round\":\"12\",\"player\":\"14141\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594492235\",\"franchise\":\"0022\",\"round\":\"12\",\"player\":\"11390\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594494320\",\"franchise\":\"0013\",\"round\":\"12\",\"player\":\"14122\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594497714\",\"franchise\":\"0014\",\"round\":\"12\",\"player\":\"13633\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594497815\",\"franchise\":\"0015\",\"round\":\"12\",\"player\":\"11695\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594497878\",\"franchise\":\"0015\",\"round\":\"13\",\"player\":\"14852\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594502171\",\"franchise\":\"0014\",\"round\":\"13\",\"player\":\"9988\",\"pick\":\"02\",\"comments\":\"RISK is my favorite boardgame\"},{\"timestamp\":\"1594502582\",\"franchise\":\"0013\",\"round\":\"13\",\"player\":\"14778\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594509215\",\"franchise\":\"0022\",\"round\":\"13\",\"player\":\"13639\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594509215\",\"franchise\":\"0016\",\"round\":\"13\",\"player\":\"11783\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594511987\",\"franchise\":\"0024\",\"round\":\"13\",\"player\":\"13678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594513251\",\"franchise\":\"0019\",\"round\":\"13\",\"player\":\"14832\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594513581\",\"franchise\":\"0017\",\"round\":\"13\",\"player\":\"14836\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594513801\",\"franchise\":\"0021\",\"round\":\"13\",\"player\":\"11186\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594519094\",\"franchise\":\"0023\",\"round\":\"13\",\"player\":\"9831\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594532940\",\"franchise\":\"0020\",\"round\":\"13\",\"player\":\"14839\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594532940\",\"franchise\":\"0018\",\"round\":\"13\",\"player\":\"14840\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594532940\",\"franchise\":\"0018\",\"round\":\"14\",\"player\":\"13154\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594533118\",\"franchise\":\"0020\",\"round\":\"14\",\"player\":\"14075\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594566173\",\"franchise\":\"0023\",\"round\":\"14\",\"player\":\"14113\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594566173\",\"franchise\":\"0021\",\"round\":\"14\",\"player\":\"13157\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594566173\",\"franchise\":\"0017\",\"round\":\"14\",\"player\":\"14834\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594569734\",\"franchise\":\"0019\",\"round\":\"14\",\"player\":\"14126\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594576143\",\"franchise\":\"0024\",\"round\":\"14\",\"player\":\"12197\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594576143\",\"franchise\":\"0016\",\"round\":\"14\",\"player\":\"14087\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594576143\",\"franchise\":\"0022\",\"round\":\"14\",\"player\":\"8062\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594576737\",\"franchise\":\"0013\",\"round\":\"14\",\"player\":\"13236\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594578974\",\"franchise\":\"0014\",\"round\":\"14\",\"player\":\"14140\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594582532\",\"franchise\":\"0015\",\"round\":\"14\",\"player\":\"12157\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594582573\",\"franchise\":\"0015\",\"round\":\"15\",\"player\":\"14842\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594582573\",\"franchise\":\"0014\",\"round\":\"15\",\"player\":\"13614\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594583821\",\"franchise\":\"0013\",\"round\":\"15\",\"player\":\"14807\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594591579\",\"franchise\":\"0022\",\"round\":\"15\",\"player\":\"11670\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594591579\",\"franchise\":\"0016\",\"round\":\"15\",\"player\":\"13814\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594599726\",\"franchise\":\"0024\",\"round\":\"15\",\"player\":\"14808\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594599726\",\"franchise\":\"0019\",\"round\":\"15\",\"player\":\"14085\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594599828\",\"franchise\":\"0017\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594600251\",\"franchise\":\"0021\",\"round\":\"15\",\"player\":\"11660\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594606847\",\"franchise\":\"0023\",\"round\":\"15\",\"player\":\"14101\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594643195\",\"franchise\":\"0020\",\"round\":\"15\",\"player\":\"14805\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594643195\",\"franchise\":\"0018\",\"round\":\"15\",\"player\":\"10312\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594643195\",\"franchise\":\"0018\",\"round\":\"16\",\"player\":\"8658\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594643463\",\"franchise\":\"0020\",\"round\":\"16\",\"player\":\"12930\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594648639\",\"franchise\":\"0023\",\"round\":\"16\",\"player\":\"13620\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594649066\",\"franchise\":\"0021\",\"round\":\"16\",\"player\":\"14143\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594650567\",\"franchise\":\"0017\",\"round\":\"16\",\"player\":\"13192\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594650801\",\"franchise\":\"0019\",\"round\":\"16\",\"player\":\"14804\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594654778\",\"franchise\":\"0024\",\"round\":\"16\",\"player\":\"7393\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594656270\",\"franchise\":\"0016\",\"round\":\"16\",\"player\":\"10722\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594661532\",\"franchise\":\"0022\",\"round\":\"16\",\"player\":\"9075\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594661839\",\"franchise\":\"0013\",\"round\":\"16\",\"player\":\"13622\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594669015\",\"franchise\":\"0014\",\"round\":\"16\",\"player\":\"13632\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594669352\",\"franchise\":\"0015\",\"round\":\"16\",\"player\":\"13631\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594669368\",\"franchise\":\"0015\",\"round\":\"17\",\"player\":\"14112\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594669368\",\"franchise\":\"0014\",\"round\":\"17\",\"player\":\"9925\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594675985\",\"franchise\":\"0013\",\"round\":\"17\",\"player\":\"10308\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594675985\",\"franchise\":\"0022\",\"round\":\"17\",\"player\":\"11250\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594701896\",\"franchise\":\"0016\",\"round\":\"17\",\"player\":\"13168\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594704215\",\"franchise\":\"0024\",\"round\":\"17\",\"player\":\"14123\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594704215\",\"franchise\":\"0019\",\"round\":\"17\",\"player\":\"14846\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594704215\",\"franchise\":\"0017\",\"round\":\"17\",\"player\":\"14093\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594718934\",\"franchise\":\"0021\",\"round\":\"17\",\"player\":\"13155\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594736253\",\"franchise\":\"0023\",\"round\":\"17\",\"player\":\"13188\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594739575\",\"franchise\":\"0020\",\"round\":\"17\",\"player\":\"14806\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594739575\",\"franchise\":\"0018\",\"round\":\"17\",\"player\":\"11657\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594739575\",\"franchise\":\"0018\",\"round\":\"18\",\"player\":\"13153\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594739876\",\"franchise\":\"0020\",\"round\":\"18\",\"player\":\"14838\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594742621\",\"franchise\":\"0023\",\"round\":\"18\",\"player\":\"13608\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594743008\",\"franchise\":\"0021\",\"round\":\"18\",\"player\":\"14613\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594746253\",\"franchise\":\"0017\",\"round\":\"18\",\"player\":\"13158\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594747195\",\"franchise\":\"0019\",\"round\":\"18\",\"player\":\"14835\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594750590\",\"franchise\":\"0024\",\"round\":\"18\",\"player\":\"14801\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594775785\",\"franchise\":\"0016\",\"round\":\"18\",\"player\":\"11227\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594775785\",\"franchise\":\"0022\",\"round\":\"18\",\"player\":\"11193\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594780609\",\"franchise\":\"0013\",\"round\":\"18\",\"player\":\"13148\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594780609\",\"franchise\":\"0014\",\"round\":\"18\",\"player\":\"11761\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594781144\",\"franchise\":\"0015\",\"round\":\"18\",\"player\":\"14116\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594781201\",\"franchise\":\"0015\",\"round\":\"19\",\"player\":\"12317\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594783920\",\"franchise\":\"0014\",\"round\":\"19\",\"player\":\"13115\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594791382\",\"franchise\":\"0013\",\"round\":\"19\",\"player\":\"11248\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594791382\",\"franchise\":\"0022\",\"round\":\"19\",\"player\":\"14936\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594818180\",\"franchise\":\"0016\",\"round\":\"19\",\"player\":\"12386\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594820728\",\"franchise\":\"0024\",\"round\":\"19\",\"player\":\"10313\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594820876\",\"franchise\":\"0019\",\"round\":\"19\",\"player\":\"14843\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594821379\",\"franchise\":\"0017\",\"round\":\"19\",\"player\":\"14063\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594821514\",\"franchise\":\"0021\",\"round\":\"19\",\"player\":\"13613\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594835148\",\"franchise\":\"0023\",\"round\":\"19\",\"player\":\"14125\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594843395\",\"franchise\":\"0020\",\"round\":\"19\",\"player\":\"10389\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594843395\",\"franchise\":\"0018\",\"round\":\"19\",\"player\":\"13424\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594843395\",\"franchise\":\"0018\",\"round\":\"20\",\"player\":\"14837\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594843541\",\"franchise\":\"0020\",\"round\":\"20\",\"player\":\"12637\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594843541\",\"franchise\":\"0023\",\"round\":\"20\",\"player\":\"14847\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594843607\",\"franchise\":\"0021\",\"round\":\"20\",\"player\":\"12140\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594844510\",\"franchise\":\"0017\",\"round\":\"20\",\"player\":\"13763\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594871571\",\"franchise\":\"0019\",\"round\":\"20\",\"player\":\"14844\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594875826\",\"franchise\":\"0024\",\"round\":\"20\",\"player\":\"13809\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594875826\",\"franchise\":\"0016\",\"round\":\"20\",\"player\":\"13194\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594908997\",\"franchise\":\"0022\",\"round\":\"20\",\"player\":\"13768\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594912139\",\"franchise\":\"0013\",\"round\":\"20\",\"player\":\"11257\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594914062\",\"franchise\":\"0014\",\"round\":\"20\",\"player\":\"14072\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594914218\",\"franchise\":\"0015\",\"round\":\"20\",\"player\":\"14121\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594914236\",\"franchise\":\"0015\",\"round\":\"21\",\"player\":\"14815\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594914872\",\"franchise\":\"0014\",\"round\":\"21\",\"player\":\"10723\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594915546\",\"franchise\":\"0013\",\"round\":\"21\",\"player\":\"12141\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594920222\",\"franchise\":\"0022\",\"round\":\"21\",\"player\":\"10696\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594921114\",\"franchise\":\"0016\",\"round\":\"21\",\"player\":\"8944\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594921842\",\"franchise\":\"0024\",\"round\":\"21\",\"player\":\"12205\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594925313\",\"franchise\":\"0019\",\"round\":\"21\",\"player\":\"14863\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594925313\",\"franchise\":\"0017\",\"round\":\"21\",\"player\":\"12391\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594925475\",\"franchise\":\"0021\",\"round\":\"21\",\"player\":\"13139\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594933575\",\"franchise\":\"0023\",\"round\":\"21\",\"player\":\"13850\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594934355\",\"franchise\":\"0020\",\"round\":\"21\",\"player\":\"13880\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594934355\",\"franchise\":\"0018\",\"round\":\"21\",\"player\":\"12912\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594934355\",\"franchise\":\"0018\",\"round\":\"22\",\"player\":\"10960\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594934915\",\"franchise\":\"0020\",\"round\":\"22\",\"player\":\"14435\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594934915\",\"franchise\":\"0023\",\"round\":\"22\",\"player\":\"12785\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594935613\",\"franchise\":\"0021\",\"round\":\"22\",\"player\":\"13418\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594940155\",\"franchise\":\"0017\",\"round\":\"22\",\"player\":\"13488\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594940155\",\"franchise\":\"0019\",\"round\":\"22\",\"player\":\"11337\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594942406\",\"franchise\":\"0024\",\"round\":\"22\",\"player\":\"14858\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594958611\",\"franchise\":\"0016\",\"round\":\"22\",\"player\":\"12257\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594958611\",\"franchise\":\"0022\",\"round\":\"22\",\"player\":\"9308\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594959180\",\"franchise\":\"0013\",\"round\":\"22\",\"player\":\"11239\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594964381\",\"franchise\":\"0014\",\"round\":\"22\",\"player\":\"14142\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594964381\",\"franchise\":\"0015\",\"round\":\"22\",\"player\":\"11182\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION01_draft_results.xml\",\"round1DraftOrder\":\"0015,0014,0013,0022,0016,0024,0019,0017,0021,0023,0020,0018,\"},{\"unit\":\"DIVISION02\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0030\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044101\",\"franchise\":\"0026\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045000\",\"franchise\":\"0031\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594045000\",\"franchise\":\"0035\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045257\",\"franchise\":\"0027\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594045257\",\"franchise\":\"0033\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045513\",\"franchise\":\"0029\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"07\",\"comments\":\"Sorry for the delay, Magsh!\"},{\"timestamp\":\"1594046002\",\"franchise\":\"0032\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594046002\",\"franchise\":\"0028\",\"round\":\"01\",\"player\":\"11675\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594047797\",\"franchise\":\"0034\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594047998\",\"franchise\":\"0036\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594048496\",\"franchise\":\"0025\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594049473\",\"franchise\":\"0025\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594050428\",\"franchise\":\"0036\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594050552\",\"franchise\":\"0034\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594050552\",\"franchise\":\"0028\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594050929\",\"franchise\":\"0032\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594051118\",\"franchise\":\"0029\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594051118\",\"franchise\":\"0033\",\"round\":\"02\",\"player\":\"11232\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051522\",\"franchise\":\"0027\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594051522\",\"franchise\":\"0035\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051696\",\"franchise\":\"0031\",\"round\":\"02\",\"player\":\"10271\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594051696\",\"franchise\":\"0026\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594053726\",\"franchise\":\"0030\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594053745\",\"franchise\":\"0030\",\"round\":\"03\",\"player\":\"14056\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594053745\",\"franchise\":\"0026\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594053993\",\"franchise\":\"0031\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594053993\",\"franchise\":\"0035\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594054168\",\"franchise\":\"0027\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594063645\",\"franchise\":\"0033\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594063645\",\"franchise\":\"0029\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594064951\",\"franchise\":\"0032\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594064951\",\"franchise\":\"0028\",\"round\":\"03\",\"player\":\"13589\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067214\",\"franchise\":\"0034\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594067889\",\"franchise\":\"0036\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594069274\",\"franchise\":\"0025\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"12\",\"comments\":\" \"},{\"timestamp\":\"1594069416\",\"franchise\":\"0025\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594072438\",\"franchise\":\"0036\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594072522\",\"franchise\":\"0034\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594072522\",\"franchise\":\"0028\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594072854\",\"franchise\":\"0032\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594072854\",\"franchise\":\"0029\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594077782\",\"franchise\":\"0033\",\"round\":\"04\",\"player\":\"13590\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594077841\",\"franchise\":\"0027\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594077841\",\"franchise\":\"0035\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594077975\",\"franchise\":\"0031\",\"round\":\"04\",\"player\":\"13364\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594077975\",\"franchise\":\"0026\",\"round\":\"04\",\"player\":\"13164\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594082766\",\"franchise\":\"0030\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594082773\",\"franchise\":\"0030\",\"round\":\"05\",\"player\":\"11671\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594082773\",\"franchise\":\"0026\",\"round\":\"05\",\"player\":\"12151\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594083363\",\"franchise\":\"0031\",\"round\":\"05\",\"player\":\"14059\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594083363\",\"franchise\":\"0035\",\"round\":\"05\",\"player\":\"11640\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594083570\",\"franchise\":\"0027\",\"round\":\"05\",\"player\":\"14071\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594084729\",\"franchise\":\"0033\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594084729\",\"franchise\":\"0029\",\"round\":\"05\",\"player\":\"10697\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594103919\",\"franchise\":\"0032\",\"round\":\"05\",\"player\":\"11678\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594103919\",\"franchise\":\"0028\",\"round\":\"05\",\"player\":\"11760\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594118252\",\"franchise\":\"0034\",\"round\":\"05\",\"player\":\"13277\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594118802\",\"franchise\":\"0036\",\"round\":\"05\",\"player\":\"13156\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594123917\",\"franchise\":\"0025\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594125223\",\"franchise\":\"0025\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594128380\",\"franchise\":\"0036\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594128629\",\"franchise\":\"0034\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594128629\",\"franchise\":\"0028\",\"round\":\"06\",\"player\":\"14777\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594129705\",\"franchise\":\"0032\",\"round\":\"06\",\"player\":\"11644\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594129705\",\"franchise\":\"0029\",\"round\":\"06\",\"player\":\"13629\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594130698\",\"franchise\":\"0033\",\"round\":\"06\",\"player\":\"14057\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594130770\",\"franchise\":\"0027\",\"round\":\"06\",\"player\":\"12176\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594130770\",\"franchise\":\"0035\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594132811\",\"franchise\":\"0031\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594132811\",\"franchise\":\"0026\",\"round\":\"06\",\"player\":\"10276\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594134812\",\"franchise\":\"0030\",\"round\":\"06\",\"player\":\"12263\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594134834\",\"franchise\":\"0030\",\"round\":\"07\",\"player\":\"13189\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594135462\",\"franchise\":\"0026\",\"round\":\"07\",\"player\":\"13138\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594136425\",\"franchise\":\"0031\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594147432\",\"franchise\":\"0035\",\"round\":\"07\",\"player\":\"14799\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594147896\",\"franchise\":\"0027\",\"round\":\"07\",\"player\":\"14080\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594149140\",\"franchise\":\"0033\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594149140\",\"franchise\":\"0029\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594156280\",\"franchise\":\"0032\",\"round\":\"07\",\"player\":\"11222\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594156280\",\"franchise\":\"0028\",\"round\":\"07\",\"player\":\"10729\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594157473\",\"franchise\":\"0034\",\"round\":\"07\",\"player\":\"12447\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594158162\",\"franchise\":\"0036\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594159191\",\"franchise\":\"0025\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594160189\",\"franchise\":\"0025\",\"round\":\"08\",\"player\":\"14109\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594160581\",\"franchise\":\"0036\",\"round\":\"08\",\"player\":\"13668\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594161959\",\"franchise\":\"0034\",\"round\":\"08\",\"player\":\"9902\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594161959\",\"franchise\":\"0028\",\"round\":\"08\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594162594\",\"franchise\":\"0032\",\"round\":\"08\",\"player\":\"7394\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594163607\",\"franchise\":\"0029\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594164886\",\"franchise\":\"0033\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594164981\",\"franchise\":\"0027\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594164981\",\"franchise\":\"0035\",\"round\":\"08\",\"player\":\"14105\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594165424\",\"franchise\":\"0031\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594165424\",\"franchise\":\"0026\",\"round\":\"08\",\"player\":\"11674\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594171946\",\"franchise\":\"0030\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594171969\",\"franchise\":\"0030\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594171969\",\"franchise\":\"0026\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594173015\",\"franchise\":\"0031\",\"round\":\"09\",\"player\":\"9474\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594173363\",\"franchise\":\"0035\",\"round\":\"09\",\"player\":\"14067\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594173619\",\"franchise\":\"0027\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594174391\",\"franchise\":\"0033\",\"round\":\"09\",\"player\":\"13680\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594174391\",\"franchise\":\"0029\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594189179\",\"franchise\":\"0032\",\"round\":\"09\",\"player\":\"12634\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594189179\",\"franchise\":\"0028\",\"round\":\"09\",\"player\":\"12647\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594189179\",\"franchise\":\"0034\",\"round\":\"09\",\"player\":\"14778\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594203366\",\"franchise\":\"0036\",\"round\":\"09\",\"player\":\"13605\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594207020\",\"franchise\":\"0025\",\"round\":\"09\",\"player\":\"10261\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594207059\",\"franchise\":\"0025\",\"round\":\"10\",\"player\":\"11747\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594207585\",\"franchise\":\"0036\",\"round\":\"10\",\"player\":\"13672\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594214451\",\"franchise\":\"0034\",\"round\":\"10\",\"player\":\"14223\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594214451\",\"franchise\":\"0028\",\"round\":\"10\",\"player\":\"12677\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594215252\",\"franchise\":\"0032\",\"round\":\"10\",\"player\":\"13607\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594215252\",\"franchise\":\"0029\",\"round\":\"10\",\"player\":\"14810\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594215949\",\"franchise\":\"0033\",\"round\":\"10\",\"player\":\"13234\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594216379\",\"franchise\":\"0027\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594216379\",\"franchise\":\"0035\",\"round\":\"10\",\"player\":\"14122\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594218682\",\"franchise\":\"0031\",\"round\":\"10\",\"player\":\"10738\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594218682\",\"franchise\":\"0026\",\"round\":\"10\",\"player\":\"9662\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594219090\",\"franchise\":\"0030\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594219103\",\"franchise\":\"0030\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594219531\",\"franchise\":\"0026\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594220422\",\"franchise\":\"0031\",\"round\":\"11\",\"player\":\"14852\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594220422\",\"franchise\":\"0035\",\"round\":\"11\",\"player\":\"14138\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594220564\",\"franchise\":\"0027\",\"round\":\"11\",\"player\":\"14113\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594220963\",\"franchise\":\"0033\",\"round\":\"11\",\"player\":\"14208\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594220963\",\"franchise\":\"0029\",\"round\":\"11\",\"player\":\"14137\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594222615\",\"franchise\":\"0032\",\"round\":\"11\",\"player\":\"12658\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594222615\",\"franchise\":\"0028\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594223668\",\"franchise\":\"0034\",\"round\":\"11\",\"player\":\"14832\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594223982\",\"franchise\":\"0036\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594224883\",\"franchise\":\"0025\",\"round\":\"11\",\"player\":\"13639\",\"pick\":\"12\",\"comments\":\"r\"},{\"timestamp\":\"1594227074\",\"franchise\":\"0025\",\"round\":\"12\",\"player\":\"14836\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594227183\",\"franchise\":\"0036\",\"round\":\"12\",\"player\":\"12184\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594227183\",\"franchise\":\"0034\",\"round\":\"12\",\"player\":\"13674\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594227183\",\"franchise\":\"0028\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594227416\",\"franchise\":\"0032\",\"round\":\"12\",\"player\":\"14834\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594227416\",\"franchise\":\"0029\",\"round\":\"12\",\"player\":\"11390\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594228069\",\"franchise\":\"0033\",\"round\":\"12\",\"player\":\"14779\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594228184\",\"franchise\":\"0027\",\"round\":\"12\",\"player\":\"14839\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594236056\",\"franchise\":\"0035\",\"round\":\"12\",\"player\":\"13679\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594236153\",\"franchise\":\"0031\",\"round\":\"12\",\"player\":\"14058\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594236519\",\"franchise\":\"0026\",\"round\":\"12\",\"player\":\"13290\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594240792\",\"franchise\":\"0030\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594240804\",\"franchise\":\"0030\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594240804\",\"franchise\":\"0026\",\"round\":\"13\",\"player\":\"13678\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594240942\",\"franchise\":\"0031\",\"round\":\"13\",\"player\":\"12152\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594241718\",\"franchise\":\"0035\",\"round\":\"13\",\"player\":\"13157\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594244334\",\"franchise\":\"0027\",\"round\":\"13\",\"player\":\"11695\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594250348\",\"franchise\":\"0033\",\"round\":\"13\",\"player\":\"10312\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594250348\",\"franchise\":\"0029\",\"round\":\"13\",\"player\":\"14833\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594250348\",\"franchise\":\"0032\",\"round\":\"13\",\"player\":\"11783\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594250348\",\"franchise\":\"0028\",\"round\":\"13\",\"player\":\"14085\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594250348\",\"franchise\":\"0034\",\"round\":\"13\",\"player\":\"8062\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594251021\",\"franchise\":\"0036\",\"round\":\"13\",\"player\":\"14126\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594255677\",\"franchise\":\"0025\",\"round\":\"13\",\"player\":\"14842\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594255813\",\"franchise\":\"0025\",\"round\":\"14\",\"player\":\"13814\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594255970\",\"franchise\":\"0036\",\"round\":\"14\",\"player\":\"14805\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594256968\",\"franchise\":\"0034\",\"round\":\"14\",\"player\":\"9988\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594257160\",\"franchise\":\"0028\",\"round\":\"14\",\"player\":\"9831\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594280095\",\"franchise\":\"0032\",\"round\":\"14\",\"player\":\"14141\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594280095\",\"franchise\":\"0029\",\"round\":\"14\",\"player\":\"13154\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594293165\",\"franchise\":\"0033\",\"round\":\"14\",\"player\":\"11660\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594293676\",\"franchise\":\"0027\",\"round\":\"14\",\"player\":\"12157\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594293676\",\"franchise\":\"0035\",\"round\":\"14\",\"player\":\"14140\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594302513\",\"franchise\":\"0031\",\"round\":\"14\",\"player\":\"9918\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594302513\",\"franchise\":\"0026\",\"round\":\"14\",\"player\":\"13622\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594303474\",\"franchise\":\"0030\",\"round\":\"14\",\"player\":\"14101\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303492\",\"franchise\":\"0030\",\"round\":\"15\",\"player\":\"14087\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594303492\",\"franchise\":\"0026\",\"round\":\"15\",\"player\":\"13168\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594304267\",\"franchise\":\"0031\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594304267\",\"franchise\":\"0035\",\"round\":\"15\",\"player\":\"14840\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594304732\",\"franchise\":\"0027\",\"round\":\"15\",\"player\":\"12197\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594305692\",\"franchise\":\"0033\",\"round\":\"15\",\"player\":\"14123\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594306132\",\"franchise\":\"0029\",\"round\":\"15\",\"player\":\"14807\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594306510\",\"franchise\":\"0032\",\"round\":\"15\",\"player\":\"10722\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594306510\",\"franchise\":\"0028\",\"round\":\"15\",\"player\":\"8687\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594307076\",\"franchise\":\"0034\",\"round\":\"15\",\"player\":\"10413\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594307658\",\"franchise\":\"0036\",\"round\":\"15\",\"player\":\"10699\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594317407\",\"franchise\":\"0025\",\"round\":\"15\",\"player\":\"13632\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594317468\",\"franchise\":\"0025\",\"round\":\"16\",\"player\":\"9075\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594317692\",\"franchise\":\"0036\",\"round\":\"16\",\"player\":\"11670\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594317915\",\"franchise\":\"0034\",\"round\":\"16\",\"player\":\"10313\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594317915\",\"franchise\":\"0028\",\"round\":\"16\",\"player\":\"12930\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594329021\",\"franchise\":\"0032\",\"round\":\"16\",\"player\":\"13608\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594329021\",\"franchise\":\"0029\",\"round\":\"16\",\"player\":\"14112\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594329651\",\"franchise\":\"0033\",\"round\":\"16\",\"player\":\"14063\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594329845\",\"franchise\":\"0027\",\"round\":\"16\",\"player\":\"14116\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594329845\",\"franchise\":\"0035\",\"round\":\"16\",\"player\":\"14846\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594331968\",\"franchise\":\"0031\",\"round\":\"16\",\"player\":\"14613\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594332054\",\"franchise\":\"0026\",\"round\":\"16\",\"player\":\"12386\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594332450\",\"franchise\":\"0030\",\"round\":\"16\",\"player\":\"14808\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594332474\",\"franchise\":\"0030\",\"round\":\"17\",\"player\":\"14838\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594332585\",\"franchise\":\"0026\",\"round\":\"17\",\"player\":\"13236\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594335068\",\"franchise\":\"0031\",\"round\":\"17\",\"player\":\"11186\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594335068\",\"franchise\":\"0035\",\"round\":\"17\",\"player\":\"14075\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594337791\",\"franchise\":\"0027\",\"round\":\"17\",\"player\":\"13879\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594338372\",\"franchise\":\"0033\",\"round\":\"17\",\"player\":\"7393\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594338600\",\"franchise\":\"0029\",\"round\":\"17\",\"player\":\"14835\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594360981\",\"franchise\":\"0032\",\"round\":\"17\",\"player\":\"13153\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594360981\",\"franchise\":\"0028\",\"round\":\"17\",\"player\":\"11182\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594375027\",\"franchise\":\"0034\",\"round\":\"17\",\"player\":\"13188\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594378290\",\"franchise\":\"0036\",\"round\":\"17\",\"player\":\"14804\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594387639\",\"franchise\":\"0025\",\"round\":\"17\",\"player\":\"11193\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594387752\",\"franchise\":\"0025\",\"round\":\"18\",\"player\":\"11657\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594388221\",\"franchise\":\"0036\",\"round\":\"18\",\"player\":\"10308\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594391615\",\"franchise\":\"0034\",\"round\":\"18\",\"player\":\"13620\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594391964\",\"franchise\":\"0028\",\"round\":\"18\",\"player\":\"13158\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594392307\",\"franchise\":\"0032\",\"round\":\"18\",\"player\":\"14143\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594392307\",\"franchise\":\"0029\",\"round\":\"18\",\"player\":\"13809\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594393763\",\"franchise\":\"0033\",\"round\":\"18\",\"player\":\"13763\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594394130\",\"franchise\":\"0027\",\"round\":\"18\",\"player\":\"11250\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594394130\",\"franchise\":\"0035\",\"round\":\"18\",\"player\":\"10723\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594395153\",\"franchise\":\"0031\",\"round\":\"18\",\"player\":\"12205\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594395496\",\"franchise\":\"0026\",\"round\":\"18\",\"player\":\"11227\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594396907\",\"franchise\":\"0030\",\"round\":\"18\",\"player\":\"13631\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594396919\",\"franchise\":\"0030\",\"round\":\"19\",\"player\":\"13155\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594396998\",\"franchise\":\"0026\",\"round\":\"19\",\"player\":\"8658\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594397402\",\"franchise\":\"0031\",\"round\":\"19\",\"player\":\"12317\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594397402\",\"franchise\":\"0035\",\"round\":\"19\",\"player\":\"13793\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594397633\",\"franchise\":\"0027\",\"round\":\"19\",\"player\":\"11337\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594399783\",\"franchise\":\"0033\",\"round\":\"19\",\"player\":\"14107\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594405117\",\"franchise\":\"0029\",\"round\":\"19\",\"player\":\"13192\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594405117\",\"franchise\":\"0032\",\"round\":\"19\",\"player\":\"14114\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594405534\",\"franchise\":\"0028\",\"round\":\"19\",\"player\":\"14837\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594406088\",\"franchise\":\"0034\",\"round\":\"19\",\"player\":\"14844\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594407228\",\"franchise\":\"0036\",\"round\":\"19\",\"player\":\"13115\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594408115\",\"franchise\":\"0025\",\"round\":\"19\",\"player\":\"13880\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594408316\",\"franchise\":\"0025\",\"round\":\"20\",\"player\":\"14142\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594408375\",\"franchise\":\"0036\",\"round\":\"20\",\"player\":\"14125\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594408527\",\"franchise\":\"0034\",\"round\":\"20\",\"player\":\"14801\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594408673\",\"franchise\":\"0028\",\"round\":\"20\",\"player\":\"11225\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594413244\",\"franchise\":\"0032\",\"round\":\"20\",\"player\":\"11761\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594413244\",\"franchise\":\"0029\",\"round\":\"20\",\"player\":\"10973\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594415712\",\"franchise\":\"0033\",\"round\":\"20\",\"player\":\"14806\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594416406\",\"franchise\":\"0027\",\"round\":\"20\",\"player\":\"14843\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594416511\",\"franchise\":\"0035\",\"round\":\"20\",\"player\":\"14121\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594416720\",\"franchise\":\"0031\",\"round\":\"20\",\"player\":\"12328\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594416720\",\"franchise\":\"0026\",\"round\":\"20\",\"player\":\"12505\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594428739\",\"franchise\":\"0030\",\"round\":\"20\",\"player\":\"14093\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594428803\",\"franchise\":\"0030\",\"round\":\"21\",\"player\":\"11647\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594428803\",\"franchise\":\"0026\",\"round\":\"21\",\"player\":\"7877\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594432412\",\"franchise\":\"0031\",\"round\":\"21\",\"player\":\"12257\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594440882\",\"franchise\":\"0035\",\"round\":\"21\",\"player\":\"14815\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594445628\",\"franchise\":\"0027\",\"round\":\"21\",\"player\":\"14864\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594488503\",\"franchise\":\"0033\",\"round\":\"21\",\"player\":\"10960\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594488503\",\"franchise\":\"0029\",\"round\":\"21\",\"player\":\"13768\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594491376\",\"franchise\":\"0032\",\"round\":\"21\",\"player\":\"13194\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594491376\",\"franchise\":\"0028\",\"round\":\"21\",\"player\":\"9925\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594491898\",\"franchise\":\"0034\",\"round\":\"21\",\"player\":\"14017\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594491999\",\"franchise\":\"0036\",\"round\":\"21\",\"player\":\"14858\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594493833\",\"franchise\":\"0025\",\"round\":\"21\",\"player\":\"14435\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594494636\",\"franchise\":\"0025\",\"round\":\"22\",\"player\":\"14847\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594495247\",\"franchise\":\"0036\",\"round\":\"22\",\"player\":\"14936\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594496230\",\"franchise\":\"0034\",\"round\":\"22\",\"player\":\"13424\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594501871\",\"franchise\":\"0028\",\"round\":\"22\",\"player\":\"12206\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594503345\",\"franchise\":\"0032\",\"round\":\"22\",\"player\":\"12637\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594503345\",\"franchise\":\"0029\",\"round\":\"22\",\"player\":\"12140\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594508537\",\"franchise\":\"0033\",\"round\":\"22\",\"player\":\"14867\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594509337\",\"franchise\":\"0027\",\"round\":\"22\",\"player\":\"10389\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594510787\",\"franchise\":\"0035\",\"round\":\"22\",\"player\":\"13868\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594515706\",\"franchise\":\"0031\",\"round\":\"22\",\"player\":\"14072\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594515706\",\"franchise\":\"0026\",\"round\":\"22\",\"player\":\"13139\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594521134\",\"franchise\":\"0030\",\"round\":\"22\",\"player\":\"14783\",\"pick\":\"12\",\"comments\":\"\"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION02_draft_results.xml\",\"round1DraftOrder\":\"0030,0026,0031,0035,0027,0033,0029,0032,0028,0034,0036,0025,\"},{\"unit\":\"DIVISION03\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044020\",\"franchise\":\"0045\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594044529\",\"franchise\":\"0039\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"02\",\"comments\":\"We are also working on signing him to a 10-year contract.  \"},{\"timestamp\":\"1594044687\",\"franchise\":\"0040\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594044868\",\"franchise\":\"0043\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594045164\",\"franchise\":\"0047\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594045164\",\"franchise\":\"0048\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] Tough to pass up on Zeke and other options, but I'm excited to see what Kamara can do this season!\"},{\"timestamp\":\"1594045285\",\"franchise\":\"0046\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594060723\",\"franchise\":\"0042\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594061070\",\"franchise\":\"0044\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594061287\",\"franchise\":\"0041\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594062306\",\"franchise\":\"0037\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594062720\",\"franchise\":\"0038\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594062746\",\"franchise\":\"0038\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594062950\",\"franchise\":\"0037\",\"round\":\"02\",\"player\":\"10271\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594063593\",\"franchise\":\"0041\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"03\",\"comments\":\"I went back and forth on mixon and sanders to the point that I was actually telling people I took mixon...\\n\"},{\"timestamp\":\"1594063799\",\"franchise\":\"0044\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594065538\",\"franchise\":\"0042\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"05\",\"comments\":\"tough crowd .. not who I hoped for here.. but should be the guy in ARI\"},{\"timestamp\":\"1594065819\",\"franchise\":\"0046\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594066421\",\"franchise\":\"0048\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"07\",\"comments\":\"Because of bye weeks...I will be a free square W for someone in Week 6.\"},{\"timestamp\":\"1594071375\",\"franchise\":\"0047\",\"round\":\"02\",\"player\":\"11232\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594071871\",\"franchise\":\"0043\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594072075\",\"franchise\":\"0040\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594072557\",\"franchise\":\"0039\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594073906\",\"franchise\":\"0045\",\"round\":\"02\",\"player\":\"12801\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594074474\",\"franchise\":\"0045\",\"round\":\"03\",\"player\":\"13113\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594074765\",\"franchise\":\"0039\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594074983\",\"franchise\":\"0040\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594075042\",\"franchise\":\"0043\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594079221\",\"franchise\":\"0047\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594079809\",\"franchise\":\"0048\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594079996\",\"franchise\":\"0046\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594081515\",\"franchise\":\"0042\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"08\",\"comments\":\"sometimes, you have to take a chance.. \"},{\"timestamp\":\"1594082072\",\"franchise\":\"0044\",\"round\":\"03\",\"player\":\"13277\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594083380\",\"franchise\":\"0041\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594085389\",\"franchise\":\"0037\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594085529\",\"franchise\":\"0038\",\"round\":\"03\",\"player\":\"11671\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594086218\",\"franchise\":\"0038\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594089877\",\"franchise\":\"0037\",\"round\":\"04\",\"player\":\"12610\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594090764\",\"franchise\":\"0041\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594092143\",\"franchise\":\"0044\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594101032\",\"franchise\":\"0042\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594117098\",\"franchise\":\"0046\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594124194\",\"franchise\":\"0048\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594125245\",\"franchise\":\"0047\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594126066\",\"franchise\":\"0043\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594126295\",\"franchise\":\"0040\",\"round\":\"04\",\"player\":\"12171\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594128131\",\"franchise\":\"0039\",\"round\":\"04\",\"player\":\"12447\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594129449\",\"franchise\":\"0045\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594130086\",\"franchise\":\"0045\",\"round\":\"05\",\"player\":\"13589\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594131876\",\"franchise\":\"0039\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594132377\",\"franchise\":\"0040\",\"round\":\"05\",\"player\":\"11640\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594132685\",\"franchise\":\"0043\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594133018\",\"franchise\":\"0047\",\"round\":\"05\",\"player\":\"5848\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594133524\",\"franchise\":\"0048\",\"round\":\"05\",\"player\":\"13590\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594133738\",\"franchise\":\"0046\",\"round\":\"05\",\"player\":\"10697\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594139038\",\"franchise\":\"0042\",\"round\":\"05\",\"player\":\"10700\",\"pick\":\"08\",\"comments\":\"need another QB.. and bonus.. MN Viking\"},{\"timestamp\":\"1594139613\",\"franchise\":\"0044\",\"round\":\"05\",\"player\":\"12611\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594140671\",\"franchise\":\"0041\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594142748\",\"franchise\":\"0037\",\"round\":\"05\",\"player\":\"11228\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594143668\",\"franchise\":\"0038\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594143759\",\"franchise\":\"0038\",\"round\":\"06\",\"player\":\"7401\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594145094\",\"franchise\":\"0037\",\"round\":\"06\",\"player\":\"13189\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594145982\",\"franchise\":\"0041\",\"round\":\"06\",\"player\":\"11644\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594151364\",\"franchise\":\"0044\",\"round\":\"06\",\"player\":\"13164\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594151364\",\"franchise\":\"0042\",\"round\":\"06\",\"player\":\"13364\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594151509\",\"franchise\":\"0046\",\"round\":\"06\",\"player\":\"14067\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594152049\",\"franchise\":\"0048\",\"round\":\"06\",\"player\":\"11192\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594152174\",\"franchise\":\"0047\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594152228\",\"franchise\":\"0043\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594153164\",\"franchise\":\"0040\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594155990\",\"franchise\":\"0039\",\"round\":\"06\",\"player\":\"14799\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594156465\",\"franchise\":\"0045\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594156488\",\"franchise\":\"0045\",\"round\":\"07\",\"player\":\"14059\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594156894\",\"franchise\":\"0039\",\"round\":\"07\",\"player\":\"14777\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594157863\",\"franchise\":\"0040\",\"round\":\"07\",\"player\":\"13138\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594158198\",\"franchise\":\"0043\",\"round\":\"07\",\"player\":\"13668\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594158262\",\"franchise\":\"0047\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594158384\",\"franchise\":\"0048\",\"round\":\"07\",\"player\":\"7394\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594158474\",\"franchise\":\"0046\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594159362\",\"franchise\":\"0042\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"08\",\"comments\":\"not a bad WR1 in the 7th round\"},{\"timestamp\":\"1594161546\",\"franchise\":\"0044\",\"round\":\"07\",\"player\":\"11760\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594162573\",\"franchise\":\"0041\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594171157\",\"franchise\":\"0037\",\"round\":\"07\",\"player\":\"12186\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594171247\",\"franchise\":\"0038\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594171699\",\"franchise\":\"0038\",\"round\":\"08\",\"player\":\"14102\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594171853\",\"franchise\":\"0037\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594172951\",\"franchise\":\"0041\",\"round\":\"08\",\"player\":\"14057\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594173428\",\"franchise\":\"0044\",\"round\":\"08\",\"player\":\"13605\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594178808\",\"franchise\":\"0042\",\"round\":\"08\",\"player\":\"12187\",\"pick\":\"05\",\"comments\":\"okay, okay.. I could use another WR.. and Lockett seems like good value.. \"},{\"timestamp\":\"1594206218\",\"franchise\":\"0046\",\"round\":\"08\",\"player\":\"13680\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594206218\",\"franchise\":\"0048\",\"round\":\"08\",\"player\":\"14797\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594215450\",\"franchise\":\"0047\",\"round\":\"08\",\"player\":\"9902\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594215521\",\"franchise\":\"0043\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594215721\",\"franchise\":\"0040\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594216002\",\"franchise\":\"0039\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594216176\",\"franchise\":\"0045\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594217075\",\"franchise\":\"0045\",\"round\":\"09\",\"player\":\"10729\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594217520\",\"franchise\":\"0039\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594217761\",\"franchise\":\"0040\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594218016\",\"franchise\":\"0043\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594218194\",\"franchise\":\"0047\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594218536\",\"franchise\":\"0048\",\"round\":\"09\",\"player\":\"13633\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594218709\",\"franchise\":\"0046\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594222692\",\"franchise\":\"0042\",\"round\":\"09\",\"player\":\"11674\",\"pick\":\"08\",\"comments\":\"I think he will be Houston WR1.. happy to have him in the 9th round \"},{\"timestamp\":\"1594223918\",\"franchise\":\"0044\",\"round\":\"09\",\"player\":\"11747\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594224264\",\"franchise\":\"0041\",\"round\":\"09\",\"player\":\"12647\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594224344\",\"franchise\":\"0037\",\"round\":\"09\",\"player\":\"10738\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594225409\",\"franchise\":\"0038\",\"round\":\"09\",\"player\":\"14138\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594225445\",\"franchise\":\"0038\",\"round\":\"10\",\"player\":\"13606\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594225955\",\"franchise\":\"0037\",\"round\":\"10\",\"player\":\"12677\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594227349\",\"franchise\":\"0041\",\"round\":\"10\",\"player\":\"13234\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594227756\",\"franchise\":\"0044\",\"round\":\"10\",\"player\":\"13672\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594233297\",\"franchise\":\"0042\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"05\",\"comments\":\"need a TE2.. he will do\"},{\"timestamp\":\"1594233332\",\"franchise\":\"0046\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594233332\",\"franchise\":\"0048\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233490\",\"franchise\":\"0047\",\"round\":\"10\",\"player\":\"13592\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594236469\",\"franchise\":\"0043\",\"round\":\"10\",\"player\":\"14810\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594236559\",\"franchise\":\"0040\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594237011\",\"franchise\":\"0039\",\"round\":\"10\",\"player\":\"14137\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594238606\",\"franchise\":\"0045\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594238619\",\"franchise\":\"0045\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594239107\",\"franchise\":\"0039\",\"round\":\"11\",\"player\":\"14836\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594239470\",\"franchise\":\"0040\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594239913\",\"franchise\":\"0043\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594240050\",\"franchise\":\"0047\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594240367\",\"franchise\":\"0048\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594240493\",\"franchise\":\"0046\",\"round\":\"11\",\"player\":\"9831\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594243513\",\"franchise\":\"0042\",\"round\":\"11\",\"player\":\"12152\",\"pick\":\"08\",\"comments\":\"ok.. I will bite after the news.. \"},{\"timestamp\":\"1594245305\",\"franchise\":\"0044\",\"round\":\"11\",\"player\":\"13290\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594249797\",\"franchise\":\"0041\",\"round\":\"11\",\"player\":\"14141\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594253988\",\"franchise\":\"0037\",\"round\":\"11\",\"player\":\"11670\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594253988\",\"franchise\":\"0038\",\"round\":\"11\",\"player\":\"9918\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594253988\",\"franchise\":\"0038\",\"round\":\"12\",\"player\":\"14832\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594255034\",\"franchise\":\"0037\",\"round\":\"12\",\"player\":\"13607\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594255553\",\"franchise\":\"0041\",\"round\":\"12\",\"player\":\"14101\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594256120\",\"franchise\":\"0044\",\"round\":\"12\",\"player\":\"14840\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594257481\",\"franchise\":\"0042\",\"round\":\"12\",\"player\":\"14839\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594258353\",\"franchise\":\"0046\",\"round\":\"12\",\"player\":\"13678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594263743\",\"franchise\":\"0048\",\"round\":\"12\",\"player\":\"14833\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594294339\",\"franchise\":\"0047\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594295411\",\"franchise\":\"0043\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594299788\",\"franchise\":\"0040\",\"round\":\"12\",\"player\":\"9988\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594302102\",\"franchise\":\"0039\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594302266\",\"franchise\":\"0045\",\"round\":\"12\",\"player\":\"12658\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303106\",\"franchise\":\"0045\",\"round\":\"13\",\"player\":\"14834\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594303362\",\"franchise\":\"0039\",\"round\":\"13\",\"player\":\"13632\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594303541\",\"franchise\":\"0040\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594304793\",\"franchise\":\"0043\",\"round\":\"13\",\"player\":\"14113\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594307442\",\"franchise\":\"0047\",\"round\":\"13\",\"player\":\"12157\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594307442\",\"franchise\":\"0048\",\"round\":\"13\",\"player\":\"14122\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594311071\",\"franchise\":\"0046\",\"round\":\"13\",\"player\":\"11390\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594318178\",\"franchise\":\"0042\",\"round\":\"13\",\"player\":\"13679\",\"pick\":\"08\",\"comments\":\"let's see if he can have a magical season like rookie.. \"},{\"timestamp\":\"1594318510\",\"franchise\":\"0044\",\"round\":\"13\",\"player\":\"14126\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594318693\",\"franchise\":\"0041\",\"round\":\"13\",\"player\":\"13188\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594319746\",\"franchise\":\"0037\",\"round\":\"13\",\"player\":\"13814\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594320946\",\"franchise\":\"0038\",\"round\":\"13\",\"player\":\"13157\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594320973\",\"franchise\":\"0038\",\"round\":\"14\",\"player\":\"14778\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594321090\",\"franchise\":\"0037\",\"round\":\"14\",\"player\":\"11695\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594324906\",\"franchise\":\"0041\",\"round\":\"14\",\"player\":\"14807\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594325389\",\"franchise\":\"0044\",\"round\":\"14\",\"player\":\"12197\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594334974\",\"franchise\":\"0042\",\"round\":\"14\",\"player\":\"13154\",\"pick\":\"05\",\"comments\":\"I guess nobody likes him.. he is a fine #5 I think\"},{\"timestamp\":\"1594336691\",\"franchise\":\"0046\",\"round\":\"14\",\"player\":\"14852\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594337032\",\"franchise\":\"0048\",\"round\":\"14\",\"player\":\"10413\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594337069\",\"franchise\":\"0047\",\"round\":\"14\",\"player\":\"14143\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594337589\",\"franchise\":\"0043\",\"round\":\"14\",\"player\":\"14085\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594337695\",\"franchise\":\"0040\",\"round\":\"14\",\"player\":\"14112\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594338379\",\"franchise\":\"0039\",\"round\":\"14\",\"player\":\"11783\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594339073\",\"franchise\":\"0045\",\"round\":\"14\",\"player\":\"14087\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594339850\",\"franchise\":\"0045\",\"round\":\"15\",\"player\":\"13639\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594340445\",\"franchise\":\"0039\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594340806\",\"franchise\":\"0040\",\"round\":\"15\",\"player\":\"14058\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594341619\",\"franchise\":\"0043\",\"round\":\"15\",\"player\":\"8687\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594341872\",\"franchise\":\"0047\",\"round\":\"15\",\"player\":\"14835\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594342077\",\"franchise\":\"0048\",\"round\":\"15\",\"player\":\"13236\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594345995\",\"franchise\":\"0046\",\"round\":\"15\",\"player\":\"8062\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594353451\",\"franchise\":\"0042\",\"round\":\"15\",\"player\":\"14805\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594354422\",\"franchise\":\"0044\",\"round\":\"15\",\"player\":\"14804\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594355599\",\"franchise\":\"0041\",\"round\":\"15\",\"player\":\"10308\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594356180\",\"franchise\":\"0037\",\"round\":\"15\",\"player\":\"12930\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594384454\",\"franchise\":\"0038\",\"round\":\"15\",\"player\":\"9075\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594384473\",\"franchise\":\"0038\",\"round\":\"16\",\"player\":\"13620\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594390975\",\"franchise\":\"0037\",\"round\":\"16\",\"player\":\"13622\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594393445\",\"franchise\":\"0041\",\"round\":\"16\",\"player\":\"13192\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594393633\",\"franchise\":\"0044\",\"round\":\"16\",\"player\":\"14838\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594393633\",\"franchise\":\"0042\",\"round\":\"16\",\"player\":\"14842\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594395130\",\"franchise\":\"0046\",\"round\":\"16\",\"player\":\"11657\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594395806\",\"franchise\":\"0048\",\"round\":\"16\",\"player\":\"13153\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594396045\",\"franchise\":\"0047\",\"round\":\"16\",\"player\":\"13768\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594396181\",\"franchise\":\"0043\",\"round\":\"16\",\"player\":\"10699\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594396361\",\"franchise\":\"0040\",\"round\":\"16\",\"player\":\"14140\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594401448\",\"franchise\":\"0039\",\"round\":\"16\",\"player\":\"14123\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594401940\",\"franchise\":\"0045\",\"round\":\"16\",\"player\":\"14808\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594402249\",\"franchise\":\"0045\",\"round\":\"17\",\"player\":\"14093\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594402795\",\"franchise\":\"0039\",\"round\":\"17\",\"player\":\"11250\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594403044\",\"franchise\":\"0040\",\"round\":\"17\",\"player\":\"14821\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594403255\",\"franchise\":\"0043\",\"round\":\"17\",\"player\":\"14075\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594406787\",\"franchise\":\"0047\",\"round\":\"17\",\"player\":\"11182\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594406838\",\"franchise\":\"0048\",\"round\":\"17\",\"player\":\"13155\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594406934\",\"franchise\":\"0046\",\"round\":\"17\",\"player\":\"12257\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594406934\",\"franchise\":\"0042\",\"round\":\"17\",\"player\":\"14844\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594407349\",\"franchise\":\"0044\",\"round\":\"17\",\"player\":\"14779\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594415039\",\"franchise\":\"0041\",\"round\":\"17\",\"player\":\"12317\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594416512\",\"franchise\":\"0037\",\"round\":\"17\",\"player\":\"10312\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594416761\",\"franchise\":\"0038\",\"round\":\"17\",\"player\":\"7393\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594416773\",\"franchise\":\"0038\",\"round\":\"18\",\"player\":\"8658\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594417705\",\"franchise\":\"0037\",\"round\":\"18\",\"player\":\"11186\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594418898\",\"franchise\":\"0041\",\"round\":\"18\",\"player\":\"14846\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594419586\",\"franchise\":\"0044\",\"round\":\"18\",\"player\":\"13631\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594419586\",\"franchise\":\"0042\",\"round\":\"18\",\"player\":\"14801\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594420047\",\"franchise\":\"0046\",\"round\":\"18\",\"player\":\"13115\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594421164\",\"franchise\":\"0048\",\"round\":\"18\",\"player\":\"10722\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594426104\",\"franchise\":\"0047\",\"round\":\"18\",\"player\":\"14613\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594427313\",\"franchise\":\"0043\",\"round\":\"18\",\"player\":\"14843\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594428866\",\"franchise\":\"0040\",\"round\":\"18\",\"player\":\"13416\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594429141\",\"franchise\":\"0039\",\"round\":\"18\",\"player\":\"13168\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594430257\",\"franchise\":\"0045\",\"round\":\"18\",\"player\":\"13763\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594430373\",\"franchise\":\"0045\",\"round\":\"19\",\"player\":\"11660\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594431404\",\"franchise\":\"0039\",\"round\":\"19\",\"player\":\"11761\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594438685\",\"franchise\":\"0040\",\"round\":\"19\",\"player\":\"14936\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594439029\",\"franchise\":\"0043\",\"round\":\"19\",\"player\":\"14867\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594467630\",\"franchise\":\"0047\",\"round\":\"19\",\"player\":\"7877\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594467630\",\"franchise\":\"0048\",\"round\":\"19\",\"player\":\"13158\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594471004\",\"franchise\":\"0046\",\"round\":\"19\",\"player\":\"13608\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594486033\",\"franchise\":\"0042\",\"round\":\"19\",\"player\":\"14142\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594486894\",\"franchise\":\"0044\",\"round\":\"19\",\"player\":\"14847\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594487674\",\"franchise\":\"0041\",\"round\":\"19\",\"player\":\"12386\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594487985\",\"franchise\":\"0037\",\"round\":\"19\",\"player\":\"11227\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594491914\",\"franchise\":\"0038\",\"round\":\"19\",\"player\":\"9925\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594491943\",\"franchise\":\"0038\",\"round\":\"20\",\"player\":\"11705\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594492687\",\"franchise\":\"0037\",\"round\":\"20\",\"player\":\"14783\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594495028\",\"franchise\":\"0041\",\"round\":\"20\",\"player\":\"14121\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594498427\",\"franchise\":\"0044\",\"round\":\"20\",\"player\":\"13148\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594498427\",\"franchise\":\"0042\",\"round\":\"20\",\"player\":\"14116\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594502213\",\"franchise\":\"0046\",\"round\":\"20\",\"player\":\"13880\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594502213\",\"franchise\":\"0048\",\"round\":\"20\",\"player\":\"14806\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594515416\",\"franchise\":\"0047\",\"round\":\"20\",\"player\":\"10973\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594528239\",\"franchise\":\"0043\",\"round\":\"20\",\"player\":\"12140\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594536393\",\"franchise\":\"0040\",\"round\":\"20\",\"player\":\"11193\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594564789\",\"franchise\":\"0039\",\"round\":\"20\",\"player\":\"14072\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594565423\",\"franchise\":\"0045\",\"round\":\"20\",\"player\":\"13139\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594565455\",\"franchise\":\"0045\",\"round\":\"21\",\"player\":\"14435\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594565830\",\"franchise\":\"0039\",\"round\":\"21\",\"player\":\"14864\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594565911\",\"franchise\":\"0040\",\"round\":\"21\",\"player\":\"10313\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594566245\",\"franchise\":\"0043\",\"round\":\"21\",\"player\":\"14837\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594568327\",\"franchise\":\"0047\",\"round\":\"21\",\"player\":\"14063\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594568327\",\"franchise\":\"0048\",\"round\":\"21\",\"player\":\"10723\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594570739\",\"franchise\":\"0046\",\"round\":\"21\",\"player\":\"13240\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594570739\",\"franchise\":\"0042\",\"round\":\"21\",\"player\":\"13809\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594571264\",\"franchise\":\"0044\",\"round\":\"21\",\"player\":\"12141\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594573458\",\"franchise\":\"0041\",\"round\":\"21\",\"player\":\"13868\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594575658\",\"franchise\":\"0037\",\"round\":\"21\",\"player\":\"14850\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594576817\",\"franchise\":\"0038\",\"round\":\"21\",\"player\":\"11257\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594576831\",\"franchise\":\"0038\",\"round\":\"22\",\"player\":\"8416\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594577139\",\"franchise\":\"0037\",\"round\":\"22\",\"player\":\"14816\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594578810\",\"franchise\":\"0041\",\"round\":\"22\",\"player\":\"14862\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594578983\",\"franchise\":\"0044\",\"round\":\"22\",\"player\":\"6997\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594578983\",\"franchise\":\"0042\",\"round\":\"22\",\"player\":\"14082\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594582361\",\"franchise\":\"0046\",\"round\":\"22\",\"player\":\"12205\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594582361\",\"franchise\":\"0048\",\"round\":\"22\",\"player\":\"14088\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594582564\",\"franchise\":\"0047\",\"round\":\"22\",\"player\":\"12110\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594585820\",\"franchise\":\"0043\",\"round\":\"22\",\"player\":\"14086\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594586326\",\"franchise\":\"0040\",\"round\":\"22\",\"player\":\"13316\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594586710\",\"franchise\":\"0039\",\"round\":\"22\",\"player\":\"12328\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594587260\",\"franchise\":\"0045\",\"round\":\"22\",\"player\":\"13424\",\"pick\":\"12\",\"comments\":\"\"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION03_draft_results.xml\",\"round1DraftOrder\":\"0045,0039,0040,0043,0047,0048,0046,0042,0044,0041,0037,0038,\"},{\"unit\":\"DIVISION04\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0058\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594047778\",\"franchise\":\"0059\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594048122\",\"franchise\":\"0056\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594048240\",\"franchise\":\"0054\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594049879\",\"franchise\":\"0051\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594050174\",\"franchise\":\"0050\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594051971\",\"franchise\":\"0060\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594051971\",\"franchise\":\"0055\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594052173\",\"franchise\":\"0049\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594052711\",\"franchise\":\"0052\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594053096\",\"franchise\":\"0057\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594054167\",\"franchise\":\"0053\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594054206\",\"franchise\":\"0053\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594054283\",\"franchise\":\"0057\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594055415\",\"franchise\":\"0052\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594055721\",\"franchise\":\"0049\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594057449\",\"franchise\":\"0055\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594057540\",\"franchise\":\"0060\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594057973\",\"franchise\":\"0050\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594065899\",\"franchise\":\"0051\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594066911\",\"franchise\":\"0054\",\"round\":\"02\",\"player\":\"12630\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594067219\",\"franchise\":\"0056\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594067349\",\"franchise\":\"0059\",\"round\":\"02\",\"player\":\"13671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594068979\",\"franchise\":\"0058\",\"round\":\"02\",\"player\":\"11247\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594069006\",\"franchise\":\"0058\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594069350\",\"franchise\":\"0059\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594071161\",\"franchise\":\"0056\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594071657\",\"franchise\":\"0054\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594083444\",\"franchise\":\"0051\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594087465\",\"franchise\":\"0050\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594087639\",\"franchise\":\"0060\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594089430\",\"franchise\":\"0055\",\"round\":\"03\",\"player\":\"9431\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594089430\",\"franchise\":\"0049\",\"round\":\"03\",\"player\":\"13156\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594125709\",\"franchise\":\"0052\",\"round\":\"03\",\"player\":\"13146\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594125709\",\"franchise\":\"0057\",\"round\":\"03\",\"player\":\"13277\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594132396\",\"franchise\":\"0053\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594132675\",\"franchise\":\"0053\",\"round\":\"04\",\"player\":\"12263\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594132960\",\"franchise\":\"0057\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594133497\",\"franchise\":\"0052\",\"round\":\"04\",\"player\":\"14803\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594133708\",\"franchise\":\"0049\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594137267\",\"franchise\":\"0055\",\"round\":\"04\",\"player\":\"12150\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594137365\",\"franchise\":\"0060\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594138275\",\"franchise\":\"0050\",\"round\":\"04\",\"player\":\"13129\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594140066\",\"franchise\":\"0051\",\"round\":\"04\",\"player\":\"13589\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594141781\",\"franchise\":\"0054\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594144323\",\"franchise\":\"0056\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594144507\",\"franchise\":\"0059\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594146008\",\"franchise\":\"0058\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594146205\",\"franchise\":\"0058\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594146276\",\"franchise\":\"0059\",\"round\":\"05\",\"player\":\"13364\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594147543\",\"franchise\":\"0056\",\"round\":\"05\",\"player\":\"11671\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594147851\",\"franchise\":\"0054\",\"round\":\"05\",\"player\":\"14059\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594149629\",\"franchise\":\"0051\",\"round\":\"05\",\"player\":\"13590\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594150138\",\"franchise\":\"0050\",\"round\":\"05\",\"player\":\"14071\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594150202\",\"franchise\":\"0060\",\"round\":\"05\",\"player\":\"7401\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594152184\",\"franchise\":\"0055\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594153451\",\"franchise\":\"0049\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594154584\",\"franchise\":\"0052\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594155098\",\"franchise\":\"0057\",\"round\":\"05\",\"player\":\"11679\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594157925\",\"franchise\":\"0053\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594158420\",\"franchise\":\"0053\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594158565\",\"franchise\":\"0057\",\"round\":\"06\",\"player\":\"11938\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594159134\",\"franchise\":\"0052\",\"round\":\"06\",\"player\":\"11644\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594159451\",\"franchise\":\"0049\",\"round\":\"06\",\"player\":\"12676\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594163911\",\"franchise\":\"0055\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594163993\",\"franchise\":\"0060\",\"round\":\"06\",\"player\":\"12447\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594164407\",\"franchise\":\"0050\",\"round\":\"06\",\"player\":\"13164\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594166433\",\"franchise\":\"0051\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594168508\",\"franchise\":\"0054\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594170201\",\"franchise\":\"0056\",\"round\":\"06\",\"player\":\"13630\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594170291\",\"franchise\":\"0059\",\"round\":\"06\",\"player\":\"14109\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594173849\",\"franchise\":\"0058\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594174532\",\"franchise\":\"0058\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594174571\",\"franchise\":\"0059\",\"round\":\"07\",\"player\":\"13668\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594177502\",\"franchise\":\"0056\",\"round\":\"07\",\"player\":\"14057\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594180205\",\"franchise\":\"0054\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594180329\",\"franchise\":\"0051\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594180726\",\"franchise\":\"0050\",\"round\":\"07\",\"player\":\"11747\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594216115\",\"franchise\":\"0060\",\"round\":\"07\",\"player\":\"11760\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594216115\",\"franchise\":\"0055\",\"round\":\"07\",\"player\":\"11222\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594216345\",\"franchise\":\"0049\",\"round\":\"07\",\"player\":\"14777\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594216655\",\"franchise\":\"0052\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594220747\",\"franchise\":\"0057\",\"round\":\"07\",\"player\":\"10697\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594223453\",\"franchise\":\"0053\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594223472\",\"franchise\":\"0053\",\"round\":\"08\",\"player\":\"13646\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594223793\",\"franchise\":\"0057\",\"round\":\"08\",\"player\":\"13680\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594229030\",\"franchise\":\"0052\",\"round\":\"08\",\"player\":\"10273\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594229701\",\"franchise\":\"0049\",\"round\":\"08\",\"player\":\"14799\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594232422\",\"franchise\":\"0055\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594232649\",\"franchise\":\"0060\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594233093\",\"franchise\":\"0050\",\"round\":\"08\",\"player\":\"12650\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594233630\",\"franchise\":\"0051\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594236805\",\"franchise\":\"0054\",\"round\":\"08\",\"player\":\"10729\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594238829\",\"franchise\":\"0056\",\"round\":\"08\",\"player\":\"14067\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594239075\",\"franchise\":\"0059\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594243295\",\"franchise\":\"0058\",\"round\":\"08\",\"player\":\"12634\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594243737\",\"franchise\":\"0058\",\"round\":\"09\",\"player\":\"11680\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594243759\",\"franchise\":\"0059\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594244611\",\"franchise\":\"0056\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594245463\",\"franchise\":\"0054\",\"round\":\"09\",\"player\":\"13605\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594247487\",\"franchise\":\"0051\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594247715\",\"franchise\":\"0050\",\"round\":\"09\",\"player\":\"7394\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594247828\",\"franchise\":\"0060\",\"round\":\"09\",\"player\":\"14137\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594251735\",\"franchise\":\"0055\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594251927\",\"franchise\":\"0049\",\"round\":\"09\",\"player\":\"12677\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594252227\",\"franchise\":\"0052\",\"round\":\"09\",\"player\":\"12647\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594254597\",\"franchise\":\"0057\",\"round\":\"09\",\"player\":\"11886\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594255743\",\"franchise\":\"0053\",\"round\":\"09\",\"player\":\"14800\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594255759\",\"franchise\":\"0053\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594256542\",\"franchise\":\"0057\",\"round\":\"10\",\"player\":\"14223\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594257205\",\"franchise\":\"0052\",\"round\":\"10\",\"player\":\"14138\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594257402\",\"franchise\":\"0049\",\"round\":\"10\",\"player\":\"13193\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594258231\",\"franchise\":\"0055\",\"round\":\"10\",\"player\":\"9902\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594258869\",\"franchise\":\"0060\",\"round\":\"10\",\"player\":\"13672\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594258969\",\"franchise\":\"0050\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594259722\",\"franchise\":\"0051\",\"round\":\"10\",\"player\":\"11516\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594261545\",\"franchise\":\"0054\",\"round\":\"10\",\"player\":\"13722\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594263124\",\"franchise\":\"0056\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594263289\",\"franchise\":\"0059\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594264549\",\"franchise\":\"0058\",\"round\":\"10\",\"player\":\"11674\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594264579\",\"franchise\":\"0058\",\"round\":\"11\",\"player\":\"10738\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594264962\",\"franchise\":\"0059\",\"round\":\"11\",\"player\":\"12658\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594265650\",\"franchise\":\"0056\",\"round\":\"11\",\"player\":\"14141\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594268497\",\"franchise\":\"0054\",\"round\":\"11\",\"player\":\"13679\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594275632\",\"franchise\":\"0051\",\"round\":\"11\",\"player\":\"14122\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594296280\",\"franchise\":\"0050\",\"round\":\"11\",\"player\":\"12152\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594296280\",\"franchise\":\"0060\",\"round\":\"11\",\"player\":\"13607\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313857\",\"franchise\":\"0055\",\"round\":\"11\",\"player\":\"14810\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594313990\",\"franchise\":\"0049\",\"round\":\"11\",\"player\":\"14113\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594314553\",\"franchise\":\"0052\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594314702\",\"franchise\":\"0057\",\"round\":\"11\",\"player\":\"11390\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594318758\",\"franchise\":\"0053\",\"round\":\"11\",\"player\":\"13234\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594318777\",\"franchise\":\"0053\",\"round\":\"12\",\"player\":\"14126\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594319100\",\"franchise\":\"0057\",\"round\":\"12\",\"player\":\"13678\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594319821\",\"franchise\":\"0052\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594320324\",\"franchise\":\"0049\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594324104\",\"franchise\":\"0055\",\"round\":\"12\",\"player\":\"13612\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594324197\",\"franchise\":\"0060\",\"round\":\"12\",\"player\":\"13154\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594324406\",\"franchise\":\"0050\",\"round\":\"12\",\"player\":\"14140\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594325852\",\"franchise\":\"0051\",\"round\":\"12\",\"player\":\"11783\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594326018\",\"franchise\":\"0054\",\"round\":\"12\",\"player\":\"9918\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594327237\",\"franchise\":\"0056\",\"round\":\"12\",\"player\":\"14085\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594327455\",\"franchise\":\"0059\",\"round\":\"12\",\"player\":\"14839\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594336587\",\"franchise\":\"0058\",\"round\":\"12\",\"player\":\"10699\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594336617\",\"franchise\":\"0058\",\"round\":\"13\",\"player\":\"13814\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594336720\",\"franchise\":\"0059\",\"round\":\"13\",\"player\":\"14101\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594338123\",\"franchise\":\"0056\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594341022\",\"franchise\":\"0054\",\"round\":\"13\",\"player\":\"9831\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594341880\",\"franchise\":\"0051\",\"round\":\"13\",\"player\":\"13639\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594343055\",\"franchise\":\"0050\",\"round\":\"13\",\"player\":\"13622\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594343166\",\"franchise\":\"0060\",\"round\":\"13\",\"player\":\"14832\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594346478\",\"franchise\":\"0055\",\"round\":\"13\",\"player\":\"13290\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594346801\",\"franchise\":\"0049\",\"round\":\"13\",\"player\":\"14136\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594348516\",\"franchise\":\"0052\",\"round\":\"13\",\"player\":\"14834\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594348777\",\"franchise\":\"0057\",\"round\":\"13\",\"player\":\"9988\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594382085\",\"franchise\":\"0053\",\"round\":\"13\",\"player\":\"14058\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594382115\",\"franchise\":\"0053\",\"round\":\"14\",\"player\":\"13726\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594387554\",\"franchise\":\"0057\",\"round\":\"14\",\"player\":\"11695\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594388004\",\"franchise\":\"0052\",\"round\":\"14\",\"player\":\"10413\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594388487\",\"franchise\":\"0049\",\"round\":\"14\",\"player\":\"14833\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594389380\",\"franchise\":\"0055\",\"round\":\"14\",\"player\":\"14778\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594389380\",\"franchise\":\"0060\",\"round\":\"14\",\"player\":\"12197\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594392879\",\"franchise\":\"0050\",\"round\":\"14\",\"player\":\"14842\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594394478\",\"franchise\":\"0051\",\"round\":\"14\",\"player\":\"12157\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594395888\",\"franchise\":\"0054\",\"round\":\"14\",\"player\":\"14779\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594396821\",\"franchise\":\"0056\",\"round\":\"14\",\"player\":\"14836\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594397299\",\"franchise\":\"0059\",\"round\":\"14\",\"player\":\"14852\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594399444\",\"franchise\":\"0058\",\"round\":\"14\",\"player\":\"13236\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594399482\",\"franchise\":\"0058\",\"round\":\"15\",\"player\":\"14087\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594399905\",\"franchise\":\"0059\",\"round\":\"15\",\"player\":\"14112\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594404609\",\"franchise\":\"0056\",\"round\":\"15\",\"player\":\"14143\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594407713\",\"franchise\":\"0054\",\"round\":\"15\",\"player\":\"13188\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594408909\",\"franchise\":\"0051\",\"round\":\"15\",\"player\":\"13620\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594409412\",\"franchise\":\"0050\",\"round\":\"15\",\"player\":\"14123\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594409412\",\"franchise\":\"0060\",\"round\":\"15\",\"player\":\"14093\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594409412\",\"franchise\":\"0055\",\"round\":\"15\",\"player\":\"8687\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594409722\",\"franchise\":\"0049\",\"round\":\"15\",\"player\":\"14075\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594409793\",\"franchise\":\"0052\",\"round\":\"15\",\"player\":\"11670\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594409960\",\"franchise\":\"0057\",\"round\":\"15\",\"player\":\"11186\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594411185\",\"franchise\":\"0053\",\"round\":\"15\",\"player\":\"14840\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594411791\",\"franchise\":\"0053\",\"round\":\"16\",\"player\":\"14838\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594494062\",\"franchise\":\"0057\",\"round\":\"16\",\"player\":\"13115\",\"pick\":\"02\",\"comments\":\"[Timer expired: Pick skipped\\nReplacement pick made by Commissioner.] \"},{\"timestamp\":\"1594462413\",\"franchise\":\"0052\",\"round\":\"16\",\"player\":\"9075\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594474603\",\"franchise\":\"0049\",\"round\":\"16\",\"player\":\"14805\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594475149\",\"franchise\":\"0055\",\"round\":\"16\",\"player\":\"13157\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594475149\",\"franchise\":\"0060\",\"round\":\"16\",\"player\":\"11193\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594475520\",\"franchise\":\"0050\",\"round\":\"16\",\"player\":\"10973\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594509066\",\"franchise\":\"0051\",\"round\":\"16\",\"player\":\"12930\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594509095\",\"franchise\":\"0054\",\"round\":\"16\",\"player\":\"14846\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594509554\",\"franchise\":\"0056\",\"round\":\"16\",\"player\":\"13763\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594510189\",\"franchise\":\"0059\",\"round\":\"16\",\"player\":\"14807\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594519402\",\"franchise\":\"0058\",\"round\":\"16\",\"player\":\"13809\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594519466\",\"franchise\":\"0058\",\"round\":\"17\",\"player\":\"11250\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594519698\",\"franchise\":\"0059\",\"round\":\"17\",\"player\":\"8062\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594521120\",\"franchise\":\"0056\",\"round\":\"17\",\"player\":\"13192\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594521193\",\"franchise\":\"0054\",\"round\":\"17\",\"player\":\"11657\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594523267\",\"franchise\":\"0051\",\"round\":\"17\",\"player\":\"12317\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594527605\",\"franchise\":\"0050\",\"round\":\"17\",\"player\":\"14804\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594527605\",\"franchise\":\"0060\",\"round\":\"17\",\"player\":\"14808\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594527605\",\"franchise\":\"0055\",\"round\":\"17\",\"player\":\"8658\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594527863\",\"franchise\":\"0049\",\"round\":\"17\",\"player\":\"13632\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594556479\",\"franchise\":\"0052\",\"round\":\"17\",\"player\":\"10308\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594563001\",\"franchise\":\"0057\",\"round\":\"17\",\"player\":\"11761\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594563001\",\"franchise\":\"0053\",\"round\":\"17\",\"player\":\"14116\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594563001\",\"franchise\":\"0053\",\"round\":\"18\",\"player\":\"10312\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594578682\",\"franchise\":\"0057\",\"round\":\"18\",\"player\":\"11660\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594582360\",\"franchise\":\"0052\",\"round\":\"18\",\"player\":\"13139\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594582530\",\"franchise\":\"0049\",\"round\":\"18\",\"player\":\"12140\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594582530\",\"franchise\":\"0055\",\"round\":\"18\",\"player\":\"7393\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594582530\",\"franchise\":\"0060\",\"round\":\"18\",\"player\":\"10722\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594583302\",\"franchise\":\"0050\",\"round\":\"18\",\"player\":\"13753\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594586582\",\"franchise\":\"0051\",\"round\":\"18\",\"player\":\"13631\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594586582\",\"franchise\":\"0054\",\"round\":\"18\",\"player\":\"13158\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594589216\",\"franchise\":\"0056\",\"round\":\"18\",\"player\":\"14843\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594589574\",\"franchise\":\"0059\",\"round\":\"18\",\"player\":\"13155\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594595994\",\"franchise\":\"0058\",\"round\":\"18\",\"player\":\"12386\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594596017\",\"franchise\":\"0058\",\"round\":\"19\",\"player\":\"11227\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594600713\",\"franchise\":\"0059\",\"round\":\"19\",\"player\":\"13153\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594604232\",\"franchise\":\"0056\",\"round\":\"19\",\"player\":\"9308\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594604232\",\"franchise\":\"0054\",\"round\":\"19\",\"player\":\"13768\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594615391\",\"franchise\":\"0051\",\"round\":\"19\",\"player\":\"14613\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594643492\",\"franchise\":\"0050\",\"round\":\"19\",\"player\":\"12141\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594643492\",\"franchise\":\"0060\",\"round\":\"19\",\"player\":\"14125\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594643492\",\"franchise\":\"0055\",\"round\":\"19\",\"player\":\"9925\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594643869\",\"franchise\":\"0049\",\"round\":\"19\",\"player\":\"14835\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594644378\",\"franchise\":\"0052\",\"round\":\"19\",\"player\":\"11705\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594644892\",\"franchise\":\"0057\",\"round\":\"19\",\"player\":\"11257\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594647541\",\"franchise\":\"0053\",\"round\":\"19\",\"player\":\"14801\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594647560\",\"franchise\":\"0053\",\"round\":\"20\",\"player\":\"12205\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594647560\",\"franchise\":\"0057\",\"round\":\"20\",\"player\":\"13608\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594648486\",\"franchise\":\"0052\",\"round\":\"20\",\"player\":\"12391\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594648739\",\"franchise\":\"0049\",\"round\":\"20\",\"player\":\"14806\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594648739\",\"franchise\":\"0055\",\"round\":\"20\",\"player\":\"13880\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594648739\",\"franchise\":\"0060\",\"round\":\"20\",\"player\":\"13168\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594649176\",\"franchise\":\"0050\",\"round\":\"20\",\"player\":\"10389\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594651473\",\"franchise\":\"0051\",\"round\":\"20\",\"player\":\"13418\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594652312\",\"franchise\":\"0054\",\"round\":\"20\",\"player\":\"14114\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594653248\",\"franchise\":\"0056\",\"round\":\"20\",\"player\":\"14072\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594654001\",\"franchise\":\"0059\",\"round\":\"20\",\"player\":\"14209\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594654733\",\"franchise\":\"0058\",\"round\":\"20\",\"player\":\"14435\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594654776\",\"franchise\":\"0058\",\"round\":\"21\",\"player\":\"11182\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594657235\",\"franchise\":\"0059\",\"round\":\"21\",\"player\":\"14142\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594657619\",\"franchise\":\"0056\",\"round\":\"21\",\"player\":\"13135\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594659133\",\"franchise\":\"0054\",\"round\":\"21\",\"player\":\"13136\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594661970\",\"franchise\":\"0051\",\"round\":\"21\",\"player\":\"11337\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594663157\",\"franchise\":\"0050\",\"round\":\"21\",\"player\":\"14837\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594663157\",\"franchise\":\"0060\",\"round\":\"21\",\"player\":\"14097\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594663157\",\"franchise\":\"0055\",\"round\":\"21\",\"player\":\"13850\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594664678\",\"franchise\":\"0049\",\"round\":\"21\",\"player\":\"14841\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594667203\",\"franchise\":\"0052\",\"round\":\"21\",\"player\":\"14063\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594672765\",\"franchise\":\"0057\",\"round\":\"21\",\"player\":\"13868\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594676036\",\"franchise\":\"0053\",\"round\":\"21\",\"player\":\"13148\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594676059\",\"franchise\":\"0053\",\"round\":\"22\",\"player\":\"10313\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594676637\",\"franchise\":\"0057\",\"round\":\"22\",\"player\":\"10723\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594686194\",\"franchise\":\"0052\",\"round\":\"22\",\"player\":\"14107\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594686695\",\"franchise\":\"0049\",\"round\":\"22\",\"player\":\"13613\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594686695\",\"franchise\":\"0055\",\"round\":\"22\",\"player\":\"10960\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594686695\",\"franchise\":\"0060\",\"round\":\"22\",\"player\":\"13316\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594690996\",\"franchise\":\"0050\",\"round\":\"22\",\"player\":\"12596\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594699538\",\"franchise\":\"0051\",\"round\":\"22\",\"player\":\"14086\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594699577\",\"franchise\":\"0054\",\"round\":\"22\",\"player\":\"14936\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594715284\",\"franchise\":\"0056\",\"round\":\"22\",\"player\":\"13637\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594737150\",\"franchise\":\"0059\",\"round\":\"22\",\"player\":\"11647\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594749002\",\"franchise\":\"0058\",\"round\":\"22\",\"player\":\"12257\",\"pick\":\"12\",\"comments\":\"\"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION04_draft_results.xml\",\"round1DraftOrder\":\"0058,0059,0056,0054,0051,0050,0060,0055,0049,0052,0057,0053,\"},{\"unit\":\"DIVISION05\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0068\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] Popping the champagne now...\"},{\"timestamp\":\"1594044361\",\"franchise\":\"0071\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594044361\",\"franchise\":\"0070\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044361\",\"franchise\":\"0065\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044361\",\"franchise\":\"0062\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594045985\",\"franchise\":\"0069\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594045985\",\"franchise\":\"0066\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594050420\",\"franchise\":\"0064\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594052396\",\"franchise\":\"0063\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594053138\",\"franchise\":\"0061\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594053138\",\"franchise\":\"0072\",\"round\":\"01\",\"player\":\"13131\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594054020\",\"franchise\":\"0067\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594054038\",\"franchise\":\"0067\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594054418\",\"franchise\":\"0072\",\"round\":\"02\",\"player\":\"11244\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594054959\",\"franchise\":\"0061\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594058489\",\"franchise\":\"0063\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594058489\",\"franchise\":\"0064\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594058489\",\"franchise\":\"0066\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594068546\",\"franchise\":\"0069\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594069332\",\"franchise\":\"0062\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594069730\",\"franchise\":\"0065\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594070494\",\"franchise\":\"0070\",\"round\":\"02\",\"player\":\"13319\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594071223\",\"franchise\":\"0071\",\"round\":\"02\",\"player\":\"12801\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594078339\",\"franchise\":\"0068\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594085370\",\"franchise\":\"0068\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594085513\",\"franchise\":\"0071\",\"round\":\"03\",\"player\":\"12630\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594085784\",\"franchise\":\"0070\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594085796\",\"franchise\":\"0065\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594087466\",\"franchise\":\"0062\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594091940\",\"franchise\":\"0069\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594091940\",\"franchise\":\"0066\",\"round\":\"03\",\"player\":\"13589\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594092262\",\"franchise\":\"0064\",\"round\":\"03\",\"player\":\"9099\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594093130\",\"franchise\":\"0063\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594106350\",\"franchise\":\"0061\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594119586\",\"franchise\":\"0072\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594133160\",\"franchise\":\"0067\",\"round\":\"03\",\"player\":\"7836\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594133202\",\"franchise\":\"0067\",\"round\":\"04\",\"player\":\"11671\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594133202\",\"franchise\":\"0072\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594136880\",\"franchise\":\"0061\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594137516\",\"franchise\":\"0063\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594137516\",\"franchise\":\"0064\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594137516\",\"franchise\":\"0066\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594144719\",\"franchise\":\"0069\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594144840\",\"franchise\":\"0062\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594144840\",\"franchise\":\"0065\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594148776\",\"franchise\":\"0070\",\"round\":\"04\",\"player\":\"13364\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594148871\",\"franchise\":\"0071\",\"round\":\"04\",\"player\":\"12610\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594149659\",\"franchise\":\"0068\",\"round\":\"04\",\"player\":\"12175\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594149684\",\"franchise\":\"0068\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594149748\",\"franchise\":\"0071\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594150103\",\"franchise\":\"0070\",\"round\":\"05\",\"player\":\"10700\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594150630\",\"franchise\":\"0065\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594151490\",\"franchise\":\"0062\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594164304\",\"franchise\":\"0069\",\"round\":\"05\",\"player\":\"14802\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594164304\",\"franchise\":\"0066\",\"round\":\"05\",\"player\":\"13164\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594164304\",\"franchise\":\"0064\",\"round\":\"05\",\"player\":\"11760\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594167154\",\"franchise\":\"0063\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594168351\",\"franchise\":\"0061\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594168736\",\"franchise\":\"0072\",\"round\":\"05\",\"player\":\"10697\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594169718\",\"franchise\":\"0067\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594170003\",\"franchise\":\"0067\",\"round\":\"06\",\"player\":\"10273\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594170003\",\"franchise\":\"0072\",\"round\":\"06\",\"player\":\"14797\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594170781\",\"franchise\":\"0061\",\"round\":\"06\",\"player\":\"14799\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594172110\",\"franchise\":\"0063\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594173806\",\"franchise\":\"0064\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594173806\",\"franchise\":\"0066\",\"round\":\"06\",\"player\":\"11886\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594181094\",\"franchise\":\"0069\",\"round\":\"06\",\"player\":\"12151\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594201932\",\"franchise\":\"0062\",\"round\":\"06\",\"player\":\"12611\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594210787\",\"franchise\":\"0065\",\"round\":\"06\",\"player\":\"13668\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594211701\",\"franchise\":\"0070\",\"round\":\"06\",\"player\":\"11680\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594212888\",\"franchise\":\"0071\",\"round\":\"06\",\"player\":\"14059\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594213025\",\"franchise\":\"0068\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594213114\",\"franchise\":\"0068\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594214469\",\"franchise\":\"0071\",\"round\":\"07\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594214859\",\"franchise\":\"0070\",\"round\":\"07\",\"player\":\"10276\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594214914\",\"franchise\":\"0065\",\"round\":\"07\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594217360\",\"franchise\":\"0062\",\"round\":\"07\",\"player\":\"12447\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594217360\",\"franchise\":\"0069\",\"round\":\"07\",\"player\":\"13590\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594223559\",\"franchise\":\"0066\",\"round\":\"07\",\"player\":\"11222\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594223702\",\"franchise\":\"0064\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594224630\",\"franchise\":\"0063\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594225416\",\"franchise\":\"0061\",\"round\":\"07\",\"player\":\"14067\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594225633\",\"franchise\":\"0072\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594232847\",\"franchise\":\"0067\",\"round\":\"07\",\"player\":\"14057\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594232944\",\"franchise\":\"0067\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594232944\",\"franchise\":\"0072\",\"round\":\"08\",\"player\":\"10261\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233123\",\"franchise\":\"0061\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594237908\",\"franchise\":\"0063\",\"round\":\"08\",\"player\":\"9474\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594238045\",\"franchise\":\"0064\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594238223\",\"franchise\":\"0066\",\"round\":\"08\",\"player\":\"14777\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594238628\",\"franchise\":\"0069\",\"round\":\"08\",\"player\":\"12187\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594238883\",\"franchise\":\"0062\",\"round\":\"08\",\"player\":\"10729\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594239793\",\"franchise\":\"0065\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594239875\",\"franchise\":\"0070\",\"round\":\"08\",\"player\":\"11516\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594241310\",\"franchise\":\"0071\",\"round\":\"08\",\"player\":\"12176\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594241902\",\"franchise\":\"0068\",\"round\":\"08\",\"player\":\"13672\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594241929\",\"franchise\":\"0068\",\"round\":\"09\",\"player\":\"11644\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594242720\",\"franchise\":\"0071\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594243242\",\"franchise\":\"0070\",\"round\":\"09\",\"player\":\"13646\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594243332\",\"franchise\":\"0065\",\"round\":\"09\",\"player\":\"14137\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594249593\",\"franchise\":\"0062\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594256244\",\"franchise\":\"0069\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594256721\",\"franchise\":\"0066\",\"round\":\"09\",\"player\":\"13605\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594256721\",\"franchise\":\"0064\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594260161\",\"franchise\":\"0063\",\"round\":\"09\",\"player\":\"13680\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594260289\",\"franchise\":\"0061\",\"round\":\"09\",\"player\":\"12650\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594261459\",\"franchise\":\"0072\",\"round\":\"09\",\"player\":\"10738\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594262412\",\"franchise\":\"0067\",\"round\":\"09\",\"player\":\"11747\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594262431\",\"franchise\":\"0067\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594262431\",\"franchise\":\"0072\",\"round\":\"10\",\"player\":\"13607\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594266037\",\"franchise\":\"0061\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594294103\",\"franchise\":\"0063\",\"round\":\"10\",\"player\":\"12647\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594294103\",\"franchise\":\"0064\",\"round\":\"10\",\"player\":\"7394\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594298922\",\"franchise\":\"0066\",\"round\":\"10\",\"player\":\"10699\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594300414\",\"franchise\":\"0069\",\"round\":\"10\",\"player\":\"14113\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594300469\",\"franchise\":\"0062\",\"round\":\"10\",\"player\":\"12152\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594300525\",\"franchise\":\"0065\",\"round\":\"10\",\"player\":\"13290\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594301385\",\"franchise\":\"0070\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594301502\",\"franchise\":\"0071\",\"round\":\"10\",\"player\":\"9902\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594303718\",\"franchise\":\"0068\",\"round\":\"10\",\"player\":\"11674\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594304982\",\"franchise\":\"0068\",\"round\":\"11\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594307464\",\"franchise\":\"0071\",\"round\":\"11\",\"player\":\"11783\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594314272\",\"franchise\":\"0070\",\"round\":\"11\",\"player\":\"12184\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594314272\",\"franchise\":\"0065\",\"round\":\"11\",\"player\":\"11670\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594314909\",\"franchise\":\"0062\",\"round\":\"11\",\"player\":\"13154\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594316508\",\"franchise\":\"0069\",\"round\":\"11\",\"player\":\"12677\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594316508\",\"franchise\":\"0066\",\"round\":\"11\",\"player\":\"14138\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594316508\",\"franchise\":\"0064\",\"round\":\"11\",\"player\":\"13679\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327449\",\"franchise\":\"0063\",\"round\":\"11\",\"player\":\"14810\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594327449\",\"franchise\":\"0061\",\"round\":\"11\",\"player\":\"14058\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327449\",\"franchise\":\"0072\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594327985\",\"franchise\":\"0067\",\"round\":\"11\",\"player\":\"13612\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594328146\",\"franchise\":\"0067\",\"round\":\"12\",\"player\":\"12658\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594328146\",\"franchise\":\"0072\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594329293\",\"franchise\":\"0061\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594331309\",\"franchise\":\"0063\",\"round\":\"12\",\"player\":\"9988\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594331614\",\"franchise\":\"0064\",\"round\":\"12\",\"player\":\"14122\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594342649\",\"franchise\":\"0066\",\"round\":\"12\",\"player\":\"14778\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594344726\",\"franchise\":\"0069\",\"round\":\"12\",\"player\":\"13234\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594344726\",\"franchise\":\"0062\",\"round\":\"12\",\"player\":\"13193\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594344726\",\"franchise\":\"0065\",\"round\":\"12\",\"player\":\"13814\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594344863\",\"franchise\":\"0070\",\"round\":\"12\",\"player\":\"10973\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594345603\",\"franchise\":\"0071\",\"round\":\"12\",\"player\":\"14798\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594346200\",\"franchise\":\"0068\",\"round\":\"12\",\"player\":\"13639\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594346694\",\"franchise\":\"0068\",\"round\":\"13\",\"player\":\"13378\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594347068\",\"franchise\":\"0071\",\"round\":\"13\",\"player\":\"14839\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594347171\",\"franchise\":\"0070\",\"round\":\"13\",\"player\":\"10413\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594347231\",\"franchise\":\"0065\",\"round\":\"13\",\"player\":\"14085\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594347385\",\"franchise\":\"0062\",\"round\":\"13\",\"player\":\"8062\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594385468\",\"franchise\":\"0069\",\"round\":\"13\",\"player\":\"14087\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594385468\",\"franchise\":\"0066\",\"round\":\"13\",\"player\":\"12634\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594396574\",\"franchise\":\"0064\",\"round\":\"13\",\"player\":\"14141\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594423104\",\"franchise\":\"0063\",\"round\":\"13\",\"player\":\"14101\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594423294\",\"franchise\":\"0061\",\"round\":\"13\",\"player\":\"14832\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594423294\",\"franchise\":\"0072\",\"round\":\"13\",\"player\":\"13678\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594423877\",\"franchise\":\"0067\",\"round\":\"13\",\"player\":\"8687\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594424133\",\"franchise\":\"0067\",\"round\":\"14\",\"player\":\"14840\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594424133\",\"franchise\":\"0072\",\"round\":\"14\",\"player\":\"11390\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594424304\",\"franchise\":\"0061\",\"round\":\"14\",\"player\":\"14833\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594425847\",\"franchise\":\"0063\",\"round\":\"14\",\"player\":\"14852\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594427725\",\"franchise\":\"0064\",\"round\":\"14\",\"player\":\"14836\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594427725\",\"franchise\":\"0066\",\"round\":\"14\",\"player\":\"11250\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594439492\",\"franchise\":\"0069\",\"round\":\"14\",\"player\":\"9918\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594439492\",\"franchise\":\"0062\",\"round\":\"14\",\"player\":\"13620\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594439492\",\"franchise\":\"0065\",\"round\":\"14\",\"player\":\"13726\",\"pick\":\"09\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594474618\",\"franchise\":\"0070\",\"round\":\"14\",\"player\":\"13622\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594479954\",\"franchise\":\"0071\",\"round\":\"14\",\"player\":\"14123\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594481062\",\"franchise\":\"0068\",\"round\":\"14\",\"player\":\"12157\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594481217\",\"franchise\":\"0068\",\"round\":\"15\",\"player\":\"11695\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594483031\",\"franchise\":\"0071\",\"round\":\"15\",\"player\":\"13148\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594492034\",\"franchise\":\"0070\",\"round\":\"15\",\"player\":\"7393\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594492105\",\"franchise\":\"0065\",\"round\":\"15\",\"player\":\"14808\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594492105\",\"franchise\":\"0062\",\"round\":\"15\",\"player\":\"13236\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594493430\",\"franchise\":\"0069\",\"round\":\"15\",\"player\":\"14126\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594493430\",\"franchise\":\"0066\",\"round\":\"15\",\"player\":\"11761\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594493551\",\"franchise\":\"0064\",\"round\":\"15\",\"player\":\"14805\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594494279\",\"franchise\":\"0063\",\"round\":\"15\",\"player\":\"9831\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594494279\",\"franchise\":\"0061\",\"round\":\"15\",\"player\":\"14804\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594502302\",\"franchise\":\"0072\",\"round\":\"15\",\"player\":\"14842\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594502302\",\"franchise\":\"0067\",\"round\":\"15\",\"player\":\"13194\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594502302\",\"franchise\":\"0067\",\"round\":\"16\",\"player\":\"13617\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594503391\",\"franchise\":\"0072\",\"round\":\"16\",\"player\":\"14140\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594503391\",\"franchise\":\"0061\",\"round\":\"16\",\"player\":\"13157\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594504851\",\"franchise\":\"0063\",\"round\":\"16\",\"player\":\"14807\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594505404\",\"franchise\":\"0064\",\"round\":\"16\",\"player\":\"13188\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594505767\",\"franchise\":\"0066\",\"round\":\"16\",\"player\":\"11227\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594506474\",\"franchise\":\"0069\",\"round\":\"16\",\"player\":\"14143\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594506474\",\"franchise\":\"0062\",\"round\":\"16\",\"player\":\"12197\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594506557\",\"franchise\":\"0065\",\"round\":\"16\",\"player\":\"14779\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594506931\",\"franchise\":\"0070\",\"round\":\"16\",\"player\":\"13763\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594508166\",\"franchise\":\"0071\",\"round\":\"16\",\"player\":\"12317\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594508553\",\"franchise\":\"0068\",\"round\":\"16\",\"player\":\"14834\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594508646\",\"franchise\":\"0068\",\"round\":\"17\",\"player\":\"14125\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594508934\",\"franchise\":\"0071\",\"round\":\"17\",\"player\":\"13632\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594510152\",\"franchise\":\"0070\",\"round\":\"17\",\"player\":\"13158\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594510284\",\"franchise\":\"0065\",\"round\":\"17\",\"player\":\"14838\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594510284\",\"franchise\":\"0062\",\"round\":\"17\",\"player\":\"12930\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594511480\",\"franchise\":\"0069\",\"round\":\"17\",\"player\":\"13192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594514141\",\"franchise\":\"0066\",\"round\":\"17\",\"player\":\"9925\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594514544\",\"franchise\":\"0064\",\"round\":\"17\",\"player\":\"13153\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594516787\",\"franchise\":\"0063\",\"round\":\"17\",\"player\":\"13115\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594520952\",\"franchise\":\"0061\",\"round\":\"17\",\"player\":\"10312\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594520952\",\"franchise\":\"0072\",\"round\":\"17\",\"player\":\"14841\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594520952\",\"franchise\":\"0067\",\"round\":\"17\",\"player\":\"13613\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594520952\",\"franchise\":\"0067\",\"round\":\"18\",\"player\":\"13139\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594520952\",\"franchise\":\"0072\",\"round\":\"18\",\"player\":\"11657\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594521022\",\"franchise\":\"0061\",\"round\":\"18\",\"player\":\"14613\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594521974\",\"franchise\":\"0063\",\"round\":\"18\",\"player\":\"14075\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594525232\",\"franchise\":\"0064\",\"round\":\"18\",\"player\":\"14093\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594559590\",\"franchise\":\"0066\",\"round\":\"18\",\"player\":\"11337\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594559590\",\"franchise\":\"0069\",\"round\":\"18\",\"player\":\"14112\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594559590\",\"franchise\":\"0062\",\"round\":\"18\",\"player\":\"8658\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594559668\",\"franchise\":\"0065\",\"round\":\"18\",\"player\":\"14801\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594561083\",\"franchise\":\"0070\",\"round\":\"18\",\"player\":\"14783\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594563514\",\"franchise\":\"0071\",\"round\":\"18\",\"player\":\"11660\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594563975\",\"franchise\":\"0068\",\"round\":\"18\",\"player\":\"13168\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594564039\",\"franchise\":\"0068\",\"round\":\"19\",\"player\":\"14072\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594564898\",\"franchise\":\"0071\",\"round\":\"19\",\"player\":\"9075\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594566041\",\"franchise\":\"0070\",\"round\":\"19\",\"player\":\"13850\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594568490\",\"franchise\":\"0065\",\"round\":\"19\",\"player\":\"14121\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594568490\",\"franchise\":\"0062\",\"round\":\"19\",\"player\":\"13631\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594571354\",\"franchise\":\"0069\",\"round\":\"19\",\"player\":\"14116\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594571647\",\"franchise\":\"0066\",\"round\":\"19\",\"player\":\"13155\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594572041\",\"franchise\":\"0064\",\"round\":\"19\",\"player\":\"14846\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594572755\",\"franchise\":\"0063\",\"round\":\"19\",\"player\":\"14936\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594578884\",\"franchise\":\"0061\",\"round\":\"19\",\"player\":\"14017\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594578884\",\"franchise\":\"0072\",\"round\":\"19\",\"player\":\"10722\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594585751\",\"franchise\":\"0067\",\"round\":\"19\",\"player\":\"14835\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594585761\",\"franchise\":\"0067\",\"round\":\"20\",\"player\":\"10308\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594585761\",\"franchise\":\"0072\",\"round\":\"20\",\"player\":\"13637\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594585761\",\"franchise\":\"0061\",\"round\":\"20\",\"player\":\"13809\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594589606\",\"franchise\":\"0063\",\"round\":\"20\",\"player\":\"12141\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594589751\",\"franchise\":\"0064\",\"round\":\"20\",\"player\":\"14843\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594590308\",\"franchise\":\"0066\",\"round\":\"20\",\"player\":\"12391\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594592272\",\"franchise\":\"0069\",\"round\":\"20\",\"player\":\"12140\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594592272\",\"franchise\":\"0062\",\"round\":\"20\",\"player\":\"14142\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594592363\",\"franchise\":\"0065\",\"round\":\"20\",\"player\":\"13240\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594592801\",\"franchise\":\"0070\",\"round\":\"20\",\"player\":\"14837\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594595306\",\"franchise\":\"0071\",\"round\":\"20\",\"player\":\"11705\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594595668\",\"franchise\":\"0068\",\"round\":\"20\",\"player\":\"13868\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594595704\",\"franchise\":\"0068\",\"round\":\"21\",\"player\":\"12205\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594595822\",\"franchise\":\"0071\",\"round\":\"21\",\"player\":\"12386\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594596127\",\"franchise\":\"0070\",\"round\":\"21\",\"player\":\"12110\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594596184\",\"franchise\":\"0065\",\"round\":\"21\",\"player\":\"12785\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594596184\",\"franchise\":\"0062\",\"round\":\"21\",\"player\":\"14063\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594604066\",\"franchise\":\"0069\",\"round\":\"21\",\"player\":\"11193\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594604334\",\"franchise\":\"0066\",\"round\":\"21\",\"player\":\"10723\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594605299\",\"franchise\":\"0064\",\"round\":\"21\",\"player\":\"11399\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594606398\",\"franchise\":\"0063\",\"round\":\"21\",\"player\":\"14435\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594606398\",\"franchise\":\"0061\",\"round\":\"21\",\"player\":\"14076\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594606398\",\"franchise\":\"0072\",\"round\":\"21\",\"player\":\"10960\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594606398\",\"franchise\":\"0067\",\"round\":\"21\",\"player\":\"13793\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594606398\",\"franchise\":\"0067\",\"round\":\"22\",\"player\":\"14103\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594606398\",\"franchise\":\"0072\",\"round\":\"22\",\"player\":\"14106\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594606398\",\"franchise\":\"0061\",\"round\":\"22\",\"player\":\"13066\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594644877\",\"franchise\":\"0063\",\"round\":\"22\",\"player\":\"14844\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594651968\",\"franchise\":\"0064\",\"round\":\"22\",\"player\":\"13768\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594651968\",\"franchise\":\"0066\",\"round\":\"22\",\"player\":\"11186\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594654256\",\"franchise\":\"0069\",\"round\":\"22\",\"player\":\"13880\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594654256\",\"franchise\":\"0062\",\"round\":\"22\",\"player\":\"14107\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594658397\",\"franchise\":\"0065\",\"round\":\"22\",\"player\":\"13382\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594659419\",\"franchise\":\"0070\",\"round\":\"22\",\"player\":\"14815\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594661091\",\"franchise\":\"0071\",\"round\":\"22\",\"player\":\"14114\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594664398\",\"franchise\":\"0068\",\"round\":\"22\",\"player\":\"14195\",\"pick\":\"12\",\"comments\":\"\"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION05_draft_results.xml\",\"round1DraftOrder\":\"0068,0071,0070,0065,0062,0069,0066,0064,0063,0061,0072,0067,\"},{\"unit\":\"DIVISION06\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044101\",\"franchise\":\"0082\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594044242\",\"franchise\":\"0077\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594044242\",\"franchise\":\"0075\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594049651\",\"franchise\":\"0074\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"04\",\"comments\":\"Apologies for the delay - happy SFBX Day\"},{\"timestamp\":\"1594051414\",\"franchise\":\"0083\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594051414\",\"franchise\":\"0078\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051414\",\"franchise\":\"0079\",\"round\":\"01\",\"player\":\"13113\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594051581\",\"franchise\":\"0081\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594051944\",\"franchise\":\"0076\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594052110\",\"franchise\":\"0084\",\"round\":\"01\",\"player\":\"12620\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594053218\",\"franchise\":\"0080\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594053218\",\"franchise\":\"0073\",\"round\":\"01\",\"player\":\"10271\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594053948\",\"franchise\":\"0073\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594054785\",\"franchise\":\"0080\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594054983\",\"franchise\":\"0084\",\"round\":\"02\",\"player\":\"12626\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594055235\",\"franchise\":\"0076\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594055475\",\"franchise\":\"0081\",\"round\":\"02\",\"player\":\"13299\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594056657\",\"franchise\":\"0079\",\"round\":\"02\",\"player\":\"13131\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594058748\",\"franchise\":\"0078\",\"round\":\"02\",\"player\":\"9099\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594061842\",\"franchise\":\"0083\",\"round\":\"02\",\"player\":\"11232\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594063513\",\"franchise\":\"0074\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594063513\",\"franchise\":\"0075\",\"round\":\"02\",\"player\":\"13319\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594066226\",\"franchise\":\"0077\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594066226\",\"franchise\":\"0082\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594066226\",\"franchise\":\"0082\",\"round\":\"03\",\"player\":\"12630\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067874\",\"franchise\":\"0077\",\"round\":\"03\",\"player\":\"14073\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594067874\",\"franchise\":\"0075\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594067874\",\"franchise\":\"0074\",\"round\":\"03\",\"player\":\"13671\",\"pick\":\"04\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594068558\",\"franchise\":\"0083\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594071532\",\"franchise\":\"0078\",\"round\":\"03\",\"player\":\"12610\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594071610\",\"franchise\":\"0079\",\"round\":\"03\",\"player\":\"13404\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594071610\",\"franchise\":\"0081\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594072705\",\"franchise\":\"0076\",\"round\":\"03\",\"player\":\"11671\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594091885\",\"franchise\":\"0084\",\"round\":\"03\",\"player\":\"13589\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594094969\",\"franchise\":\"0080\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594119313\",\"franchise\":\"0073\",\"round\":\"03\",\"player\":\"7836\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594121229\",\"franchise\":\"0073\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594133198\",\"franchise\":\"0080\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594133872\",\"franchise\":\"0084\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594135026\",\"franchise\":\"0076\",\"round\":\"04\",\"player\":\"12175\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594135026\",\"franchise\":\"0081\",\"round\":\"04\",\"player\":\"11247\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594137540\",\"franchise\":\"0079\",\"round\":\"04\",\"player\":\"12150\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594143607\",\"franchise\":\"0078\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594148091\",\"franchise\":\"0083\",\"round\":\"04\",\"player\":\"5848\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594150378\",\"franchise\":\"0074\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594153685\",\"franchise\":\"0075\",\"round\":\"04\",\"player\":\"13635\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594161578\",\"franchise\":\"0077\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594183559\",\"franchise\":\"0082\",\"round\":\"04\",\"player\":\"14802\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594183579\",\"franchise\":\"0082\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594210324\",\"franchise\":\"0077\",\"round\":\"05\",\"player\":\"13146\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594216568\",\"franchise\":\"0075\",\"round\":\"05\",\"player\":\"14104\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594224167\",\"franchise\":\"0074\",\"round\":\"05\",\"player\":\"13364\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594224167\",\"franchise\":\"0083\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594224341\",\"franchise\":\"0078\",\"round\":\"05\",\"player\":\"11192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594224974\",\"franchise\":\"0079\",\"round\":\"05\",\"player\":\"11679\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594225069\",\"franchise\":\"0081\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594225760\",\"franchise\":\"0076\",\"round\":\"05\",\"player\":\"13164\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594225823\",\"franchise\":\"0084\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594228370\",\"franchise\":\"0080\",\"round\":\"05\",\"player\":\"13629\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594229815\",\"franchise\":\"0073\",\"round\":\"05\",\"player\":\"14071\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594229840\",\"franchise\":\"0073\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594248863\",\"franchise\":\"0080\",\"round\":\"06\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594253835\",\"franchise\":\"0084\",\"round\":\"06\",\"player\":\"12678\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594254091\",\"franchise\":\"0076\",\"round\":\"06\",\"player\":\"13605\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594254236\",\"franchise\":\"0081\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594254322\",\"franchise\":\"0079\",\"round\":\"06\",\"player\":\"11228\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594255119\",\"franchise\":\"0078\",\"round\":\"06\",\"player\":\"13668\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594256631\",\"franchise\":\"0083\",\"round\":\"06\",\"player\":\"14799\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594261622\",\"franchise\":\"0074\",\"round\":\"06\",\"player\":\"12187\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594262594\",\"franchise\":\"0075\",\"round\":\"06\",\"player\":\"14102\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594296544\",\"franchise\":\"0077\",\"round\":\"06\",\"player\":\"10276\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594303364\",\"franchise\":\"0082\",\"round\":\"06\",\"player\":\"10697\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594303384\",\"franchise\":\"0082\",\"round\":\"07\",\"player\":\"7401\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594311710\",\"franchise\":\"0077\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594321891\",\"franchise\":\"0075\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594326165\",\"franchise\":\"0074\",\"round\":\"07\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594334519\",\"franchise\":\"0083\",\"round\":\"07\",\"player\":\"12611\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594335119\",\"franchise\":\"0078\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594335211\",\"franchise\":\"0079\",\"round\":\"07\",\"player\":\"14059\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594336494\",\"franchise\":\"0081\",\"round\":\"07\",\"player\":\"13590\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594336709\",\"franchise\":\"0076\",\"round\":\"07\",\"player\":\"10729\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594336821\",\"franchise\":\"0084\",\"round\":\"07\",\"player\":\"12186\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594337671\",\"franchise\":\"0080\",\"round\":\"07\",\"player\":\"10273\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594341574\",\"franchise\":\"0073\",\"round\":\"07\",\"player\":\"14797\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594341624\",\"franchise\":\"0073\",\"round\":\"08\",\"player\":\"12447\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594342096\",\"franchise\":\"0080\",\"round\":\"08\",\"player\":\"7394\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594342214\",\"franchise\":\"0084\",\"round\":\"08\",\"player\":\"13672\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594344504\",\"franchise\":\"0076\",\"round\":\"08\",\"player\":\"11640\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594344504\",\"franchise\":\"0081\",\"round\":\"08\",\"player\":\"11760\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594346132\",\"franchise\":\"0079\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594346277\",\"franchise\":\"0078\",\"round\":\"08\",\"player\":\"11680\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594384980\",\"franchise\":\"0083\",\"round\":\"08\",\"player\":\"14057\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594387391\",\"franchise\":\"0074\",\"round\":\"08\",\"player\":\"11644\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594387830\",\"franchise\":\"0075\",\"round\":\"08\",\"player\":\"14777\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594392722\",\"franchise\":\"0077\",\"round\":\"08\",\"player\":\"14105\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594392722\",\"franchise\":\"0082\",\"round\":\"08\",\"player\":\"13646\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594392722\",\"franchise\":\"0082\",\"round\":\"09\",\"player\":\"10261\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594395866\",\"franchise\":\"0077\",\"round\":\"09\",\"player\":\"13680\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594395866\",\"franchise\":\"0075\",\"round\":\"09\",\"player\":\"13592\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594400385\",\"franchise\":\"0074\",\"round\":\"09\",\"player\":\"12650\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594400385\",\"franchise\":\"0083\",\"round\":\"09\",\"player\":\"9902\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594401220\",\"franchise\":\"0078\",\"round\":\"09\",\"player\":\"11747\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594402403\",\"franchise\":\"0079\",\"round\":\"09\",\"player\":\"11674\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594403130\",\"franchise\":\"0081\",\"round\":\"09\",\"player\":\"11886\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594406613\",\"franchise\":\"0076\",\"round\":\"09\",\"player\":\"14138\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594406922\",\"franchise\":\"0084\",\"round\":\"09\",\"player\":\"13607\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594408152\",\"franchise\":\"0080\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594412912\",\"franchise\":\"0073\",\"round\":\"09\",\"player\":\"14067\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594413232\",\"franchise\":\"0073\",\"round\":\"10\",\"player\":\"9662\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594425074\",\"franchise\":\"0080\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594426712\",\"franchise\":\"0084\",\"round\":\"10\",\"player\":\"14810\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594431705\",\"franchise\":\"0076\",\"round\":\"10\",\"player\":\"13612\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594431705\",\"franchise\":\"0081\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594432251\",\"franchise\":\"0079\",\"round\":\"10\",\"player\":\"14058\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594432453\",\"franchise\":\"0078\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594435728\",\"franchise\":\"0083\",\"round\":\"10\",\"player\":\"14136\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594442450\",\"franchise\":\"0074\",\"round\":\"10\",\"player\":\"12647\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594442450\",\"franchise\":\"0075\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594461188\",\"franchise\":\"0077\",\"round\":\"10\",\"player\":\"12677\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594461188\",\"franchise\":\"0082\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594461188\",\"franchise\":\"0082\",\"round\":\"11\",\"player\":\"10738\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594472428\",\"franchise\":\"0077\",\"round\":\"11\",\"player\":\"12152\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594472428\",\"franchise\":\"0075\",\"round\":\"11\",\"player\":\"13193\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594479066\",\"franchise\":\"0074\",\"round\":\"11\",\"player\":\"14832\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594479066\",\"franchise\":\"0083\",\"round\":\"11\",\"player\":\"14223\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594479790\",\"franchise\":\"0078\",\"round\":\"11\",\"player\":\"14137\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594481872\",\"franchise\":\"0079\",\"round\":\"11\",\"player\":\"11516\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594481872\",\"franchise\":\"0081\",\"round\":\"11\",\"player\":\"11783\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594485664\",\"franchise\":\"0076\",\"round\":\"11\",\"player\":\"14833\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594487022\",\"franchise\":\"0084\",\"round\":\"11\",\"player\":\"10699\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594488242\",\"franchise\":\"0080\",\"round\":\"11\",\"player\":\"13290\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594498591\",\"franchise\":\"0073\",\"round\":\"11\",\"player\":\"14122\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594498616\",\"franchise\":\"0073\",\"round\":\"12\",\"player\":\"14839\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594515307\",\"franchise\":\"0080\",\"round\":\"12\",\"player\":\"12184\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594562620\",\"franchise\":\"0084\",\"round\":\"12\",\"player\":\"13614\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594577714\",\"franchise\":\"0076\",\"round\":\"12\",\"player\":\"13234\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594577714\",\"franchise\":\"0081\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594580869\",\"franchise\":\"0079\",\"round\":\"12\",\"player\":\"12658\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594581150\",\"franchise\":\"0078\",\"round\":\"12\",\"player\":\"13678\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594596637\",\"franchise\":\"0083\",\"round\":\"12\",\"player\":\"9831\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594601004\",\"franchise\":\"0074\",\"round\":\"12\",\"player\":\"11390\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594601295\",\"franchise\":\"0075\",\"round\":\"12\",\"player\":\"14778\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594607768\",\"franchise\":\"0077\",\"round\":\"12\",\"player\":\"14113\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594614603\",\"franchise\":\"0082\",\"round\":\"12\",\"player\":\"9988\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594614618\",\"franchise\":\"0082\",\"round\":\"13\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594638628\",\"franchise\":\"0077\",\"round\":\"13\",\"player\":\"9918\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594659574\",\"franchise\":\"0075\",\"round\":\"13\",\"player\":\"13154\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594666673\",\"franchise\":\"0074\",\"round\":\"13\",\"player\":\"14798\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594666673\",\"franchise\":\"0083\",\"round\":\"13\",\"player\":\"14836\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594666766\",\"franchise\":\"0078\",\"round\":\"13\",\"player\":\"12157\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594666850\",\"franchise\":\"0079\",\"round\":\"13\",\"player\":\"13679\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594666850\",\"franchise\":\"0081\",\"round\":\"13\",\"player\":\"13622\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594670433\",\"franchise\":\"0076\",\"round\":\"13\",\"player\":\"14126\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594670940\",\"franchise\":\"0084\",\"round\":\"13\",\"player\":\"13639\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594676846\",\"franchise\":\"0080\",\"round\":\"13\",\"player\":\"13814\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594682470\",\"franchise\":\"0073\",\"round\":\"13\",\"player\":\"14085\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594682490\",\"franchise\":\"0073\",\"round\":\"14\",\"player\":\"14087\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594693779\",\"franchise\":\"0080\",\"round\":\"14\",\"player\":\"14101\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594694147\",\"franchise\":\"0084\",\"round\":\"14\",\"player\":\"14141\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594695089\",\"franchise\":\"0076\",\"round\":\"14\",\"player\":\"13620\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594695089\",\"franchise\":\"0081\",\"round\":\"14\",\"player\":\"11670\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594701918\",\"franchise\":\"0079\",\"round\":\"14\",\"player\":\"14834\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594723153\",\"franchise\":\"0078\",\"round\":\"14\",\"player\":\"13157\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594723153\",\"franchise\":\"0083\",\"round\":\"14\",\"player\":\"14805\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594738445\",\"franchise\":\"0074\",\"round\":\"14\",\"player\":\"11695\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594739028\",\"franchise\":\"0075\",\"round\":\"14\",\"player\":\"14808\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594743803\",\"franchise\":\"0077\",\"round\":\"14\",\"player\":\"10413\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594743803\",\"franchise\":\"0082\",\"round\":\"14\",\"player\":\"14852\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594745186\",\"franchise\":\"0082\",\"round\":\"15\",\"player\":\"13726\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594747978\",\"franchise\":\"0077\",\"round\":\"15\",\"player\":\"12197\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594747978\",\"franchise\":\"0075\",\"round\":\"15\",\"player\":\"13153\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594756336\",\"franchise\":\"0074\",\"round\":\"15\",\"player\":\"9075\",\"pick\":\"04\",\"comments\":\"Got notifications for both picks JUST as I started meetings this morning and afternoon. Tempting me.\"},{\"timestamp\":\"1594779075\",\"franchise\":\"0083\",\"round\":\"15\",\"player\":\"13608\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594780323\",\"franchise\":\"0078\",\"round\":\"15\",\"player\":\"14807\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594780868\",\"franchise\":\"0079\",\"round\":\"15\",\"player\":\"13632\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594780868\",\"franchise\":\"0081\",\"round\":\"15\",\"player\":\"14613\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594805653\",\"franchise\":\"0076\",\"round\":\"15\",\"player\":\"8687\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594820607\",\"franchise\":\"0084\",\"round\":\"15\",\"player\":\"12930\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594823839\",\"franchise\":\"0080\",\"round\":\"15\",\"player\":\"14112\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594834031\",\"franchise\":\"0073\",\"round\":\"15\",\"player\":\"14804\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594834076\",\"franchise\":\"0073\",\"round\":\"16\",\"player\":\"14846\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594861606\",\"franchise\":\"0080\",\"round\":\"16\",\"player\":\"13236\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594864614\",\"franchise\":\"0084\",\"round\":\"16\",\"player\":\"13631\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594882116\",\"franchise\":\"0076\",\"round\":\"16\",\"player\":\"13158\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594882116\",\"franchise\":\"0081\",\"round\":\"16\",\"player\":\"14779\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594902072\",\"franchise\":\"0079\",\"round\":\"16\",\"player\":\"14842\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594902630\",\"franchise\":\"0078\",\"round\":\"16\",\"player\":\"14840\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594902918\",\"franchise\":\"0083\",\"round\":\"16\",\"player\":\"10722\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594908896\",\"franchise\":\"0074\",\"round\":\"16\",\"player\":\"7393\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594909077\",\"franchise\":\"0075\",\"round\":\"16\",\"player\":\"13192\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594919142\",\"franchise\":\"0077\",\"round\":\"16\",\"player\":\"14140\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594921363\",\"franchise\":\"0082\",\"round\":\"16\",\"player\":\"14838\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594921378\",\"franchise\":\"0082\",\"round\":\"17\",\"player\":\"10308\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594929045\",\"franchise\":\"0077\",\"round\":\"17\",\"player\":\"14123\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594929198\",\"franchise\":\"0075\",\"round\":\"17\",\"player\":\"14116\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594935096\",\"franchise\":\"0074\",\"round\":\"17\",\"player\":\"14143\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594943566\",\"franchise\":\"0083\",\"round\":\"17\",\"player\":\"11660\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594944362\",\"franchise\":\"0078\",\"round\":\"17\",\"player\":\"14305\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594944362\",\"franchise\":\"0079\",\"round\":\"17\",\"player\":\"11193\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594944362\",\"franchise\":\"0081\",\"round\":\"17\",\"player\":\"13168\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594951374\",\"franchise\":\"0076\",\"round\":\"17\",\"player\":\"12391\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594954653\",\"franchise\":\"0084\",\"round\":\"17\",\"player\":\"10723\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594964169\",\"franchise\":\"0080\",\"round\":\"17\",\"player\":\"11657\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594982386\",\"franchise\":\"0073\",\"round\":\"17\",\"player\":\"13188\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594989253\",\"franchise\":\"0073\",\"round\":\"18\",\"player\":\"8062\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594997093\",\"franchise\":\"0080\",\"round\":\"18\",\"player\":\"13155\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594998839\",\"franchise\":\"0084\",\"round\":\"18\",\"player\":\"14093\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1595005923\",\"franchise\":\"0076\",\"round\":\"18\",\"player\":\"11250\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1595005923\",\"franchise\":\"0081\",\"round\":\"18\",\"player\":\"14107\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595010330\",\"franchise\":\"0079\",\"round\":\"18\",\"player\":\"14075\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1595010796\",\"franchise\":\"0078\",\"round\":\"18\",\"player\":\"8658\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1595010796\",\"franchise\":\"0083\",\"round\":\"18\",\"player\":\"14835\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595012055\",\"franchise\":\"0074\",\"round\":\"18\",\"player\":\"14125\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1595014723\",\"franchise\":\"0075\",\"round\":\"18\",\"player\":\"14843\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1595023321\",\"franchise\":\"0077\",\"round\":\"18\",\"player\":\"13809\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1595023321\",\"franchise\":\"0082\",\"round\":\"18\",\"player\":\"11761\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595023321\",\"franchise\":\"0082\",\"round\":\"19\",\"player\":\"10973\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595026950\",\"franchise\":\"0077\",\"round\":\"19\",\"player\":\"12386\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1595027257\",\"franchise\":\"0075\",\"round\":\"19\",\"player\":\"14815\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1595034712\",\"franchise\":\"0074\",\"round\":\"19\",\"player\":\"10312\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1595034712\",\"franchise\":\"0083\",\"round\":\"19\",\"player\":\"11186\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595039229\",\"franchise\":\"0078\",\"round\":\"19\",\"player\":\"14821\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1595040933\",\"franchise\":\"0079\",\"round\":\"19\",\"player\":\"13768\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1595041021\",\"franchise\":\"0081\",\"round\":\"19\",\"player\":\"13621\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1595041838\",\"franchise\":\"0076\",\"round\":\"19\",\"player\":\"13115\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1595042369\",\"franchise\":\"0084\",\"round\":\"19\",\"player\":\"7877\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1595042824\",\"franchise\":\"0080\",\"round\":\"19\",\"player\":\"12257\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1595072166\",\"franchise\":\"0073\",\"round\":\"19\",\"player\":\"12317\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1595072493\",\"franchise\":\"0073\",\"round\":\"20\",\"player\":\"13148\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1595087582\",\"franchise\":\"0080\",\"round\":\"20\",\"player\":\"13763\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1595087708\",\"franchise\":\"0084\",\"round\":\"20\",\"player\":\"11227\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1595096408\",\"franchise\":\"0076\",\"round\":\"20\",\"player\":\"13613\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1595096408\",\"franchise\":\"0081\",\"round\":\"20\",\"player\":\"13637\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595096408\",\"franchise\":\"0079\",\"round\":\"20\",\"player\":\"14072\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595096804\",\"franchise\":\"0078\",\"round\":\"20\",\"player\":\"11257\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1595115946\",\"franchise\":\"0083\",\"round\":\"20\",\"player\":\"14806\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1595119883\",\"franchise\":\"0074\",\"round\":\"20\",\"player\":\"14847\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1595134686\",\"franchise\":\"0075\",\"round\":\"20\",\"player\":\"14783\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1595134686\",\"franchise\":\"0077\",\"round\":\"20\",\"player\":\"13139\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595134686\",\"franchise\":\"0082\",\"round\":\"20\",\"player\":\"14844\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595134686\",\"franchise\":\"0082\",\"round\":\"21\",\"player\":\"13880\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595163492\",\"franchise\":\"0077\",\"round\":\"21\",\"player\":\"9925\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1595167999\",\"franchise\":\"0075\",\"round\":\"21\",\"player\":\"14082\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1595169641\",\"franchise\":\"0074\",\"round\":\"21\",\"player\":\"12785\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1595169641\",\"franchise\":\"0083\",\"round\":\"21\",\"player\":\"13194\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595169730\",\"franchise\":\"0078\",\"round\":\"21\",\"player\":\"12205\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1595171200\",\"franchise\":\"0079\",\"round\":\"21\",\"player\":\"14063\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1595171200\",\"franchise\":\"0081\",\"round\":\"21\",\"player\":\"14863\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595199491\",\"franchise\":\"0076\",\"round\":\"21\",\"player\":\"11337\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1595199791\",\"franchise\":\"0084\",\"round\":\"21\",\"player\":\"14121\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1595200301\",\"franchise\":\"0080\",\"round\":\"21\",\"player\":\"11182\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1595208164\",\"franchise\":\"0073\",\"round\":\"21\",\"player\":\"14435\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1595208185\",\"franchise\":\"0073\",\"round\":\"22\",\"player\":\"12912\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1595209394\",\"franchise\":\"0080\",\"round\":\"22\",\"player\":\"11225\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1595209633\",\"franchise\":\"0084\",\"round\":\"22\",\"player\":\"14936\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1595255741\",\"franchise\":\"0076\",\"round\":\"22\",\"player\":\"13793\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1595255741\",\"franchise\":\"0081\",\"round\":\"22\",\"player\":\"13662\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595255741\",\"franchise\":\"0079\",\"round\":\"22\",\"player\":\"14801\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595256194\",\"franchise\":\"0078\",\"round\":\"22\",\"player\":\"13240\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1595256194\",\"franchise\":\"0083\",\"round\":\"22\",\"player\":\"11890\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595260235\",\"franchise\":\"0074\",\"round\":\"22\",\"player\":\"13868\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1595260235\",\"franchise\":\"0075\",\"round\":\"22\",\"player\":\"14195\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1595276079\",\"franchise\":\"0077\",\"round\":\"22\",\"player\":\"13418\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1595276079\",\"franchise\":\"0082\",\"round\":\"22\",\"player\":\"10960\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION06_draft_results.xml\",\"round1DraftOrder\":\"0082,0077,0075,0074,0083,0078,0079,0081,0076,0084,0080,0073,\"},{\"unit\":\"DIVISION07\",\"draftType\":\"SDRAFT\",\"draftPick\":[{\"timestamp\":\"1594044102\",\"franchise\":\"0090\",\"round\":\"01\",\"player\":\"13130\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594046169\",\"franchise\":\"0092\",\"round\":\"01\",\"player\":\"13604\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594047924\",\"franchise\":\"0089\",\"round\":\"01\",\"player\":\"13116\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594048350\",\"franchise\":\"0094\",\"round\":\"01\",\"player\":\"13593\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594048542\",\"franchise\":\"0095\",\"round\":\"01\",\"player\":\"12625\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594049615\",\"franchise\":\"0093\",\"round\":\"01\",\"player\":\"12652\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594050644\",\"franchise\":\"0091\",\"round\":\"01\",\"player\":\"13132\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594050644\",\"franchise\":\"0086\",\"round\":\"01\",\"player\":\"11244\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594052626\",\"franchise\":\"0088\",\"round\":\"01\",\"player\":\"13299\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594054541\",\"franchise\":\"0087\",\"round\":\"01\",\"player\":\"13128\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594055692\",\"franchise\":\"0085\",\"round\":\"01\",\"player\":\"12626\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594059649\",\"franchise\":\"0096\",\"round\":\"01\",\"player\":\"13131\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594059681\",\"franchise\":\"0096\",\"round\":\"02\",\"player\":\"10703\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594060728\",\"franchise\":\"0085\",\"round\":\"02\",\"player\":\"13610\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594060779\",\"franchise\":\"0087\",\"round\":\"02\",\"player\":\"14079\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594060972\",\"franchise\":\"0088\",\"round\":\"02\",\"player\":\"4925\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594060972\",\"franchise\":\"0086\",\"round\":\"02\",\"player\":\"13404\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594063035\",\"franchise\":\"0091\",\"round\":\"02\",\"player\":\"12620\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594063357\",\"franchise\":\"0093\",\"round\":\"02\",\"player\":\"11675\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594063941\",\"franchise\":\"0095\",\"round\":\"02\",\"player\":\"14056\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594064567\",\"franchise\":\"0094\",\"round\":\"02\",\"player\":\"13113\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594066177\",\"franchise\":\"0089\",\"round\":\"02\",\"player\":\"14073\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594066327\",\"franchise\":\"0092\",\"round\":\"02\",\"player\":\"13671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594070194\",\"franchise\":\"0090\",\"round\":\"02\",\"player\":\"12610\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594070563\",\"franchise\":\"0090\",\"round\":\"03\",\"player\":\"13319\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594076218\",\"franchise\":\"0092\",\"round\":\"03\",\"player\":\"12801\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594081432\",\"franchise\":\"0089\",\"round\":\"03\",\"player\":\"14803\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594081452\",\"franchise\":\"0094\",\"round\":\"03\",\"player\":\"12630\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594081872\",\"franchise\":\"0095\",\"round\":\"03\",\"player\":\"13129\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594082289\",\"franchise\":\"0093\",\"round\":\"03\",\"player\":\"11232\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594085169\",\"franchise\":\"0091\",\"round\":\"03\",\"player\":\"11247\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594090130\",\"franchise\":\"0086\",\"round\":\"03\",\"player\":\"13635\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594090188\",\"franchise\":\"0088\",\"round\":\"03\",\"player\":\"12150\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594090188\",\"franchise\":\"0087\",\"round\":\"03\",\"player\":\"14802\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594090283\",\"franchise\":\"0085\",\"round\":\"03\",\"player\":\"13163\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594092481\",\"franchise\":\"0096\",\"round\":\"03\",\"player\":\"10271\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594093101\",\"franchise\":\"0096\",\"round\":\"04\",\"player\":\"11678\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594095131\",\"franchise\":\"0085\",\"round\":\"04\",\"player\":\"11192\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594095131\",\"franchise\":\"0087\",\"round\":\"04\",\"player\":\"9099\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594095428\",\"franchise\":\"0088\",\"round\":\"04\",\"player\":\"12151\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594095428\",\"franchise\":\"0086\",\"round\":\"04\",\"player\":\"10700\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594095865\",\"franchise\":\"0091\",\"round\":\"04\",\"player\":\"9431\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594098395\",\"franchise\":\"0093\",\"round\":\"04\",\"player\":\"13146\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594100847\",\"franchise\":\"0095\",\"round\":\"04\",\"player\":\"13277\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594125209\",\"franchise\":\"0094\",\"round\":\"04\",\"player\":\"11679\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594126669\",\"franchise\":\"0089\",\"round\":\"04\",\"player\":\"13156\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594132366\",\"franchise\":\"0092\",\"round\":\"04\",\"player\":\"11671\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594132366\",\"franchise\":\"0090\",\"round\":\"04\",\"player\":\"7836\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594133088\",\"franchise\":\"0090\",\"round\":\"05\",\"player\":\"12175\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594137327\",\"franchise\":\"0092\",\"round\":\"05\",\"player\":\"5848\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594138534\",\"franchise\":\"0089\",\"round\":\"05\",\"player\":\"13589\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594138667\",\"franchise\":\"0094\",\"round\":\"05\",\"player\":\"13364\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594138991\",\"franchise\":\"0095\",\"round\":\"05\",\"player\":\"11644\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594139182\",\"franchise\":\"0093\",\"round\":\"05\",\"player\":\"14799\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594140277\",\"franchise\":\"0091\",\"round\":\"05\",\"player\":\"12263\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594144989\",\"franchise\":\"0086\",\"round\":\"05\",\"player\":\"10276\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594148090\",\"franchise\":\"0088\",\"round\":\"05\",\"player\":\"11938\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594148090\",\"franchise\":\"0087\",\"round\":\"05\",\"player\":\"13189\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594148090\",\"franchise\":\"0085\",\"round\":\"05\",\"player\":\"11640\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594148466\",\"franchise\":\"0096\",\"round\":\"05\",\"player\":\"12171\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594149042\",\"franchise\":\"0096\",\"round\":\"06\",\"player\":\"10273\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594149341\",\"franchise\":\"0085\",\"round\":\"06\",\"player\":\"13590\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594149632\",\"franchise\":\"0087\",\"round\":\"06\",\"player\":\"14797\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594149900\",\"franchise\":\"0088\",\"round\":\"06\",\"player\":\"11760\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594152867\",\"franchise\":\"0086\",\"round\":\"06\",\"player\":\"11222\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594153008\",\"franchise\":\"0091\",\"round\":\"06\",\"player\":\"14071\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594153071\",\"franchise\":\"0093\",\"round\":\"06\",\"player\":\"14059\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594163386\",\"franchise\":\"0095\",\"round\":\"06\",\"player\":\"13138\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594163531\",\"franchise\":\"0094\",\"round\":\"06\",\"player\":\"12447\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594164752\",\"franchise\":\"0089\",\"round\":\"06\",\"player\":\"14777\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594165969\",\"franchise\":\"0092\",\"round\":\"06\",\"player\":\"7401\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594173547\",\"franchise\":\"0090\",\"round\":\"06\",\"player\":\"14104\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594173584\",\"franchise\":\"0090\",\"round\":\"07\",\"player\":\"13629\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594175657\",\"franchise\":\"0092\",\"round\":\"07\",\"player\":\"11228\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594176172\",\"franchise\":\"0089\",\"round\":\"07\",\"player\":\"13164\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594178282\",\"franchise\":\"0094\",\"round\":\"07\",\"player\":\"13630\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594178531\",\"franchise\":\"0095\",\"round\":\"07\",\"player\":\"13668\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594179425\",\"franchise\":\"0093\",\"round\":\"07\",\"player\":\"12611\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594179467\",\"franchise\":\"0091\",\"round\":\"07\",\"player\":\"12187\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594179467\",\"franchise\":\"0086\",\"round\":\"07\",\"player\":\"14800\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594181343\",\"franchise\":\"0088\",\"round\":\"07\",\"player\":\"12176\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594187787\",\"franchise\":\"0087\",\"round\":\"07\",\"player\":\"14109\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594206622\",\"franchise\":\"0085\",\"round\":\"07\",\"player\":\"14102\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594217374\",\"franchise\":\"0096\",\"round\":\"07\",\"player\":\"10729\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594217687\",\"franchise\":\"0096\",\"round\":\"08\",\"player\":\"11886\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594219593\",\"franchise\":\"0085\",\"round\":\"08\",\"player\":\"14080\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594219593\",\"franchise\":\"0087\",\"round\":\"08\",\"player\":\"10697\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594225025\",\"franchise\":\"0088\",\"round\":\"08\",\"player\":\"12676\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594225025\",\"franchise\":\"0086\",\"round\":\"08\",\"player\":\"14810\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594225399\",\"franchise\":\"0091\",\"round\":\"08\",\"player\":\"12186\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594225546\",\"franchise\":\"0093\",\"round\":\"08\",\"player\":\"13672\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594226512\",\"franchise\":\"0095\",\"round\":\"08\",\"player\":\"12678\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594226989\",\"franchise\":\"0094\",\"round\":\"08\",\"player\":\"9902\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594227698\",\"franchise\":\"0089\",\"round\":\"08\",\"player\":\"11680\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594232134\",\"franchise\":\"0092\",\"round\":\"08\",\"player\":\"13605\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594232351\",\"franchise\":\"0090\",\"round\":\"08\",\"player\":\"13680\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594232351\",\"franchise\":\"0090\",\"round\":\"09\",\"player\":\"14105\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594233081\",\"franchise\":\"0092\",\"round\":\"09\",\"player\":\"13606\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594234481\",\"franchise\":\"0089\",\"round\":\"09\",\"player\":\"12650\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594236164\",\"franchise\":\"0094\",\"round\":\"09\",\"player\":\"12677\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594239894\",\"franchise\":\"0095\",\"round\":\"09\",\"player\":\"13607\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594239894\",\"franchise\":\"0093\",\"round\":\"09\",\"player\":\"14137\",\"pick\":\"06\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594240070\",\"franchise\":\"0091\",\"round\":\"09\",\"player\":\"10261\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594240070\",\"franchise\":\"0086\",\"round\":\"09\",\"player\":\"7394\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594245855\",\"franchise\":\"0088\",\"round\":\"09\",\"player\":\"9662\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594246052\",\"franchise\":\"0087\",\"round\":\"09\",\"player\":\"12152\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594246052\",\"franchise\":\"0085\",\"round\":\"09\",\"player\":\"14057\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594252378\",\"franchise\":\"0096\",\"round\":\"09\",\"player\":\"11674\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594252501\",\"franchise\":\"0096\",\"round\":\"10\",\"player\":\"14138\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594253158\",\"franchise\":\"0085\",\"round\":\"10\",\"player\":\"14122\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594253158\",\"franchise\":\"0087\",\"round\":\"10\",\"player\":\"13633\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594254082\",\"franchise\":\"0088\",\"round\":\"10\",\"player\":\"12634\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594254082\",\"franchise\":\"0086\",\"round\":\"10\",\"player\":\"13674\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594254648\",\"franchise\":\"0091\",\"round\":\"10\",\"player\":\"10738\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594254837\",\"franchise\":\"0093\",\"round\":\"10\",\"player\":\"13646\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594255213\",\"franchise\":\"0095\",\"round\":\"10\",\"player\":\"14067\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594256425\",\"franchise\":\"0094\",\"round\":\"10\",\"player\":\"14208\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594262710\",\"franchise\":\"0089\",\"round\":\"10\",\"player\":\"9474\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594264605\",\"franchise\":\"0092\",\"round\":\"10\",\"player\":\"12647\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594269762\",\"franchise\":\"0090\",\"round\":\"10\",\"player\":\"13592\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594270106\",\"franchise\":\"0090\",\"round\":\"11\",\"player\":\"11747\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594301616\",\"franchise\":\"0092\",\"round\":\"11\",\"player\":\"14839\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594305735\",\"franchise\":\"0089\",\"round\":\"11\",\"player\":\"14832\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594305950\",\"franchise\":\"0094\",\"round\":\"11\",\"player\":\"14136\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594306964\",\"franchise\":\"0095\",\"round\":\"11\",\"player\":\"9831\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594310841\",\"franchise\":\"0093\",\"round\":\"11\",\"player\":\"14778\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594311706\",\"franchise\":\"0091\",\"round\":\"11\",\"player\":\"13290\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594311706\",\"franchise\":\"0086\",\"round\":\"11\",\"player\":\"11783\",\"pick\":\"08\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594313710\",\"franchise\":\"0088\",\"round\":\"11\",\"player\":\"13234\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594313710\",\"franchise\":\"0087\",\"round\":\"11\",\"player\":\"13193\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594314035\",\"franchise\":\"0085\",\"round\":\"11\",\"player\":\"13678\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594316967\",\"franchise\":\"0096\",\"round\":\"11\",\"player\":\"9918\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594316980\",\"franchise\":\"0096\",\"round\":\"12\",\"player\":\"12157\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594317092\",\"franchise\":\"0085\",\"round\":\"12\",\"player\":\"14141\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594317092\",\"franchise\":\"0087\",\"round\":\"12\",\"player\":\"13154\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594320928\",\"franchise\":\"0088\",\"round\":\"12\",\"player\":\"14833\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594320928\",\"franchise\":\"0086\",\"round\":\"12\",\"player\":\"14223\",\"pick\":\"05\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594321451\",\"franchise\":\"0091\",\"round\":\"12\",\"player\":\"14058\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594321651\",\"franchise\":\"0093\",\"round\":\"12\",\"player\":\"13378\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594323817\",\"franchise\":\"0095\",\"round\":\"12\",\"player\":\"14101\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594324764\",\"franchise\":\"0094\",\"round\":\"12\",\"player\":\"13612\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594325123\",\"franchise\":\"0089\",\"round\":\"12\",\"player\":\"14798\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594327969\",\"franchise\":\"0092\",\"round\":\"12\",\"player\":\"11516\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594346082\",\"franchise\":\"0090\",\"round\":\"12\",\"player\":\"14113\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594346691\",\"franchise\":\"0090\",\"round\":\"13\",\"player\":\"13722\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594346928\",\"franchise\":\"0092\",\"round\":\"13\",\"player\":\"12184\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594348602\",\"franchise\":\"0089\",\"round\":\"13\",\"player\":\"13614\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594348787\",\"franchise\":\"0094\",\"round\":\"13\",\"player\":\"12658\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594349272\",\"franchise\":\"0095\",\"round\":\"13\",\"player\":\"12930\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594350900\",\"franchise\":\"0093\",\"round\":\"13\",\"player\":\"12197\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594352997\",\"franchise\":\"0091\",\"round\":\"13\",\"player\":\"11390\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594381910\",\"franchise\":\"0086\",\"round\":\"13\",\"player\":\"14126\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594382364\",\"franchise\":\"0088\",\"round\":\"13\",\"player\":\"14836\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594382364\",\"franchise\":\"0087\",\"round\":\"13\",\"player\":\"11670\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594391610\",\"franchise\":\"0085\",\"round\":\"13\",\"player\":\"14852\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594396901\",\"franchise\":\"0096\",\"round\":\"13\",\"player\":\"14834\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594396925\",\"franchise\":\"0096\",\"round\":\"14\",\"player\":\"11695\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594396925\",\"franchise\":\"0085\",\"round\":\"14\",\"player\":\"14807\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594396925\",\"franchise\":\"0087\",\"round\":\"14\",\"player\":\"13639\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594398465\",\"franchise\":\"0088\",\"round\":\"14\",\"player\":\"14840\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594404593\",\"franchise\":\"0086\",\"round\":\"14\",\"player\":\"14805\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594404843\",\"franchise\":\"0091\",\"round\":\"14\",\"player\":\"14087\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594405794\",\"franchise\":\"0093\",\"round\":\"14\",\"player\":\"14140\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594408102\",\"franchise\":\"0095\",\"round\":\"14\",\"player\":\"14123\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594408127\",\"franchise\":\"0094\",\"round\":\"14\",\"player\":\"13679\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594408356\",\"franchise\":\"0089\",\"round\":\"14\",\"player\":\"14085\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594414020\",\"franchise\":\"0092\",\"round\":\"14\",\"player\":\"14835\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594420251\",\"franchise\":\"0090\",\"round\":\"14\",\"player\":\"13726\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594420276\",\"franchise\":\"0090\",\"round\":\"15\",\"player\":\"13814\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594422924\",\"franchise\":\"0092\",\"round\":\"15\",\"player\":\"14846\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594423556\",\"franchise\":\"0089\",\"round\":\"15\",\"player\":\"14143\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594423615\",\"franchise\":\"0094\",\"round\":\"15\",\"player\":\"10699\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594424211\",\"franchise\":\"0095\",\"round\":\"15\",\"player\":\"13157\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594427425\",\"franchise\":\"0093\",\"round\":\"15\",\"player\":\"9988\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594428191\",\"franchise\":\"0091\",\"round\":\"15\",\"player\":\"13622\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594430852\",\"franchise\":\"0086\",\"round\":\"15\",\"player\":\"8062\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594431339\",\"franchise\":\"0088\",\"round\":\"15\",\"player\":\"10413\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594450593\",\"franchise\":\"0087\",\"round\":\"15\",\"player\":\"14804\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594450593\",\"franchise\":\"0085\",\"round\":\"15\",\"player\":\"11657\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594453198\",\"franchise\":\"0096\",\"round\":\"15\",\"player\":\"9075\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594453219\",\"franchise\":\"0096\",\"round\":\"16\",\"player\":\"11193\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594453219\",\"franchise\":\"0085\",\"round\":\"16\",\"player\":\"10308\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594453219\",\"franchise\":\"0087\",\"round\":\"16\",\"player\":\"13632\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594454039\",\"franchise\":\"0088\",\"round\":\"16\",\"player\":\"14842\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594467131\",\"franchise\":\"0086\",\"round\":\"16\",\"player\":\"8658\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594480276\",\"franchise\":\"0091\",\"round\":\"16\",\"player\":\"13620\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594480276\",\"franchise\":\"0093\",\"round\":\"16\",\"player\":\"14808\",\"pick\":\"07\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594481845\",\"franchise\":\"0095\",\"round\":\"16\",\"player\":\"12317\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594483395\",\"franchise\":\"0094\",\"round\":\"16\",\"player\":\"14112\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594483532\",\"franchise\":\"0089\",\"round\":\"16\",\"player\":\"14838\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594484260\",\"franchise\":\"0092\",\"round\":\"16\",\"player\":\"14779\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594489939\",\"franchise\":\"0090\",\"round\":\"16\",\"player\":\"8687\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594490093\",\"franchise\":\"0090\",\"round\":\"17\",\"player\":\"14075\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594497096\",\"franchise\":\"0092\",\"round\":\"17\",\"player\":\"13631\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594497096\",\"franchise\":\"0089\",\"round\":\"17\",\"player\":\"14843\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594498533\",\"franchise\":\"0094\",\"round\":\"17\",\"player\":\"13158\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594498714\",\"franchise\":\"0095\",\"round\":\"17\",\"player\":\"12141\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594499167\",\"franchise\":\"0093\",\"round\":\"17\",\"player\":\"11227\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594500965\",\"franchise\":\"0091\",\"round\":\"17\",\"player\":\"13153\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594504692\",\"franchise\":\"0086\",\"round\":\"17\",\"player\":\"11761\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594504782\",\"franchise\":\"0088\",\"round\":\"17\",\"player\":\"11660\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594504782\",\"franchise\":\"0087\",\"round\":\"17\",\"player\":\"14116\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594505085\",\"franchise\":\"0085\",\"round\":\"17\",\"player\":\"10722\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594505876\",\"franchise\":\"0096\",\"round\":\"17\",\"player\":\"13236\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594505887\",\"franchise\":\"0096\",\"round\":\"18\",\"player\":\"13188\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594506124\",\"franchise\":\"0085\",\"round\":\"18\",\"player\":\"11337\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594506124\",\"franchise\":\"0087\",\"round\":\"18\",\"player\":\"14093\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594507733\",\"franchise\":\"0088\",\"round\":\"18\",\"player\":\"7393\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594512697\",\"franchise\":\"0086\",\"round\":\"18\",\"player\":\"14844\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594513411\",\"franchise\":\"0091\",\"round\":\"18\",\"player\":\"13192\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594513437\",\"franchise\":\"0093\",\"round\":\"18\",\"player\":\"14801\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594513753\",\"franchise\":\"0095\",\"round\":\"18\",\"player\":\"11250\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594514471\",\"franchise\":\"0094\",\"round\":\"18\",\"player\":\"13155\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594517588\",\"franchise\":\"0089\",\"round\":\"18\",\"player\":\"13763\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594518372\",\"franchise\":\"0092\",\"round\":\"18\",\"player\":\"12140\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594566103\",\"franchise\":\"0090\",\"round\":\"18\",\"player\":\"11186\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594566304\",\"franchise\":\"0090\",\"round\":\"19\",\"player\":\"14613\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594568536\",\"franchise\":\"0092\",\"round\":\"19\",\"player\":\"13608\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594568536\",\"franchise\":\"0089\",\"round\":\"19\",\"player\":\"10312\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594571780\",\"franchise\":\"0094\",\"round\":\"19\",\"player\":\"12391\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594572670\",\"franchise\":\"0095\",\"round\":\"19\",\"player\":\"13809\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594580673\",\"franchise\":\"0093\",\"round\":\"19\",\"player\":\"14121\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594585500\",\"franchise\":\"0091\",\"round\":\"19\",\"player\":\"10723\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594585755\",\"franchise\":\"0086\",\"round\":\"19\",\"player\":\"13868\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594586932\",\"franchise\":\"0088\",\"round\":\"19\",\"player\":\"13240\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594586932\",\"franchise\":\"0087\",\"round\":\"19\",\"player\":\"9925\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594586932\",\"franchise\":\"0085\",\"round\":\"19\",\"player\":\"14841\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594591459\",\"franchise\":\"0096\",\"round\":\"19\",\"player\":\"14863\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594591498\",\"franchise\":\"0096\",\"round\":\"20\",\"player\":\"13168\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594591498\",\"franchise\":\"0085\",\"round\":\"20\",\"player\":\"14063\",\"pick\":\"02\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594591498\",\"franchise\":\"0087\",\"round\":\"20\",\"player\":\"12205\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594591751\",\"franchise\":\"0088\",\"round\":\"20\",\"player\":\"14936\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594591852\",\"franchise\":\"0086\",\"round\":\"20\",\"player\":\"12857\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594596322\",\"franchise\":\"0091\",\"round\":\"20\",\"player\":\"13645\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594603017\",\"franchise\":\"0093\",\"round\":\"20\",\"player\":\"14125\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594603094\",\"franchise\":\"0095\",\"round\":\"20\",\"player\":\"13418\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594603112\",\"franchise\":\"0094\",\"round\":\"20\",\"player\":\"13115\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594604140\",\"franchise\":\"0089\",\"round\":\"20\",\"player\":\"10973\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594610561\",\"franchise\":\"0092\",\"round\":\"20\",\"player\":\"14783\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594610561\",\"franchise\":\"0090\",\"round\":\"20\",\"player\":\"11182\",\"pick\":\"12\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594610561\",\"franchise\":\"0090\",\"round\":\"21\",\"player\":\"13139\",\"pick\":\"01\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594610595\",\"franchise\":\"0092\",\"round\":\"21\",\"player\":\"7877\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594611099\",\"franchise\":\"0089\",\"round\":\"21\",\"player\":\"14867\",\"pick\":\"03\",\"comments\":\"\"},{\"timestamp\":\"1594611597\",\"franchise\":\"0094\",\"round\":\"21\",\"player\":\"14072\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594611847\",\"franchise\":\"0095\",\"round\":\"21\",\"player\":\"14815\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594612441\",\"franchise\":\"0093\",\"round\":\"21\",\"player\":\"13768\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594612898\",\"franchise\":\"0091\",\"round\":\"21\",\"player\":\"14017\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594642312\",\"franchise\":\"0086\",\"round\":\"21\",\"player\":\"13613\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594652680\",\"franchise\":\"0088\",\"round\":\"21\",\"player\":\"12386\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594652680\",\"franchise\":\"0087\",\"round\":\"21\",\"player\":\"13148\",\"pick\":\"10\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594652680\",\"franchise\":\"0085\",\"round\":\"21\",\"player\":\"14837\",\"pick\":\"11\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594655022\",\"franchise\":\"0096\",\"round\":\"21\",\"player\":\"14082\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1594655070\",\"franchise\":\"0096\",\"round\":\"22\",\"player\":\"14284\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1594657247\",\"franchise\":\"0085\",\"round\":\"22\",\"player\":\"14142\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"1594657247\",\"franchise\":\"0087\",\"round\":\"22\",\"player\":\"14435\",\"pick\":\"03\",\"comments\":\"[Pick made from Pre-Draft List] \"},{\"timestamp\":\"1594658172\",\"franchise\":\"0088\",\"round\":\"22\",\"player\":\"14209\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1594660210\",\"franchise\":\"0086\",\"round\":\"22\",\"player\":\"13488\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1594660747\",\"franchise\":\"0091\",\"round\":\"22\",\"player\":\"12328\",\"pick\":\"06\",\"comments\":\"\"},{\"timestamp\":\"1594661186\",\"franchise\":\"0093\",\"round\":\"22\",\"player\":\"14858\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1594663559\",\"franchise\":\"0095\",\"round\":\"22\",\"player\":\"12912\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1594664169\",\"franchise\":\"0094\",\"round\":\"22\",\"player\":\"14107\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1594665756\",\"franchise\":\"0089\",\"round\":\"22\",\"player\":\"13753\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"1594679257\",\"franchise\":\"0092\",\"round\":\"22\",\"player\":\"14870\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"1594696505\",\"franchise\":\"0090\",\"round\":\"22\",\"player\":\"13880\",\"pick\":\"12\",\"comments\":\"\"}],\"static_url\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_DIVISION07_draft_results.xml\",\"round1DraftOrder\":\"0090,0092,0089,0094,0095,0093,0091,0086,0088,0087,0085,0096,\"}]},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849345, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.242525, namelookup = 0.002261, 
+    connect = 0.060435, pretransfer = 0.200544, starttransfer = 0.849699, 
+    total = 0.879322)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-53ace0.R b/tests/testthat/api.myfantasyleague.com/2020/export-53ace0.R
index 067e21e0..0801f741 100644
--- a/tests/testthat/api.myfantasyleague.com/2020/export-53ace0.R
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-53ace0.R
@@ -1,20 +1,24 @@
-structure(list(url = "https://api.myfantasyleague.com/2020/export?TYPE=league&L=65443&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Fri, 10 Jul 2020 13:38:08 GMT", 
+structure(list(url = "https://www73.myfantasyleague.com/2020/export?TYPE=league&L=65443&JSON=1", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:29:08 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
-        `content-length` = "4371", `content-type` = "application/json; charset=utf-8", 
-        targethost = "www73"), class = c("insensitive", "list"
-    )), all_headers = list(list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Fri, 10 Jul 2020 13:38:08 GMT", 
+        `content-length` = "4395", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+    "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:08 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            location = "https://www73.myfantasyleague.com/2020/export?TYPE=league&L=65443&JSON=1", 
+            `content-length` = "0", targethost = "www70"), class = c("insensitive", 
+        "list"))), list(status = 200L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:08 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
-            `content-length` = "4371", `content-type` = "application/json; charset=utf-8", 
-            targethost = "www73"), class = c("insensitive", "list"
-        )))), cookies = structure(list(domain = logical(0), flag = logical(0), 
-        path = logical(0), secure = logical(0), expiration = structure(numeric(0), class = c("POSIXct", 
+            `content-length` = "4395", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+        "list")))), cookies = structure(list(domain = logical(0), 
+        flag = logical(0), path = logical(0), secure = logical(0), 
+        expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
-    content = charToRaw("{\"version\":\"1.0\",\"league\":{\"currentWaiverType\":\"BBID_FCFS\",\"playerLimitUnit\":\"DIVISION\",\"taxiSquad\":\"0\",\"endWeek\":\"16\",\"draft_kind\":\"email\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"franchises\":{\"count\":\"96\",\"franchise\":[{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Kerry Marcum (@3boys1girlmom)\",\"id\":\"0001\",\"waiverSortOrder\":\"96\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Andy Kerr (@akerr28)\",\"id\":\"0002\",\"waiverSortOrder\":\"95\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Dynasty League Football - Jaron Foster (@DLF_JaronF)\",\"id\":\"0003\",\"waiverSortOrder\":\"94\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"DLF/Trade Addicts Podcast - Brian Harr (@BrianHarrFF)\",\"id\":\"0004\",\"waiverSortOrder\":\"93\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"FantasyGuru/EliteFantasy - Thad Houston (@rad_thad1)\",\"id\":\"0005\",\"waiverSortOrder\":\"92\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"RotoWire - Jeff Erickson (@Jeff_Erickson)\",\"id\":\"0006\",\"waiverSortOrder\":\"91\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"RotoBaller/TFF Gurus - Dan Fornek (@fornekdf)\",\"id\":\"0007\",\"waiverSortOrder\":\"90\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"RotoViz - Shawn Siegele (@FF_Contrarian)\",\"id\":\"0008\",\"waiverSortOrder\":\"89\"},{\"logo\":\"https://cdn3.vox-cdn.com/thumbor/vTMcF00puKlNZ29Lnsr4q5jCaQc=/cdn0.vox-cdn.com/uploads/chorus_asset/file/3966642/anigif_enhanced-10076-1391018930-28.0.gif\",\"icon\":\"https://cdn3.vox-cdn.com/thumbor/vTMcF00puKlNZ29Lnsr4q5jCaQc=/cdn0.vox-cdn.com/uploads/chorus_asset/file/3966642/anigif_enhanced-10076-1391018930-28.0.gif\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fantasy Alarm - Andrew Cooper (@CoopAFiasco)\",\"id\":\"0009\",\"waiverSortOrder\":\"88\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Dynasty Vipers - Bradley Martz (@BMartzy)\",\"id\":\"0010\",\"waiverSortOrder\":\"87\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Scott Eklund (@Crazycanuck_33)\",\"id\":\"0011\",\"waiverSortOrder\":\"86\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Brian Quinlan (@Thestreetfa)\",\"id\":\"0012\",\"waiverSortOrder\":\"85\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"The Hot Take Podcast - Steven Toroni (@FFprofessorST3)\",\"id\":\"0013\",\"waiverSortOrder\":\"84\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"<b><font color=Orange>Fan - Jeff Hewitt (@commishposition)</font></b>\",\"id\":\"0014\",\"waiverSortOrder\":\"83\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"FTN/4for4 - Ryan Noonan (@RyNoonan)\",\"id\":\"0015\",\"waiverSortOrder\":\"82\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"FootballDiehards.com, SiriusXM Fantasy Sports Radio - Bob Harris (@footballdiehard)\",\"id\":\"0016\",\"waiverSortOrder\":\"81\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"DK Live and Lineup Lab - Mike Barner (@rotomikebarner )\",\"id\":\"0017\",\"waiverSortOrder\":\"80\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fade The Noise - Daniel Kelley (@danieltkelley)\",\"id\":\"0018\",\"waiverSortOrder\":\"79\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fan - Kurt Holiday (@SpringbokSFFC)\",\"id\":\"0019\",\"waiverSortOrder\":\"78\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"RotoWire - Michael Rathburn (@FantasyRath)\",\"id\":\"0020\",\"waiverSortOrder\":\"77\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fantasy Footballers - Kyle Borgognoni (@kyle_borg)\",\"id\":\"0021\",\"waiverSortOrder\":\"76\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fan - jerry janiga (@jerryj22)\",\"id\":\"0022\",\"waiverSortOrder\":\"75\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fan - Lou Ditta (@)\",\"id\":\"0023\",\"waiverSortOrder\":\"74\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fake Pigskin - Brian Twining (@grieserulz14)\",\"id\":\"0024\",\"waiverSortOrder\":\"73\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - LadyBallz (@michellemacatee)\",\"id\":\"0025\",\"waiverSortOrder\":\"72\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"RotoViz - Matt Wispe (@WispeyTheKid)\",\"id\":\"0026\",\"waiverSortOrder\":\"71\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - Clinton Holmgren (@clintonholmgren)\",\"id\":\"0027\",\"waiverSortOrder\":\"70\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fantasy Football Party Podcast - Anthony Maggio (@MPLSMaggio)\",\"id\":\"0028\",\"waiverSortOrder\":\"69\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0029.png\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0029.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fantasy Football Party Podcast & Sportradar - Bo Mitchell (@bo_mitchell)\",\"id\":\"0029\",\"waiverSortOrder\":\"68\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"CBS - Ben Gretch (@YardsPerGretch)\",\"id\":\"0030\",\"waiverSortOrder\":\"67\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - Diana Younan (@Datff51)\",\"id\":\"0031\",\"waiverSortOrder\":\"66\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"MyDynastyDiary - Eric Flynn (@EricJohnFlynn)\",\"id\":\"0032\",\"waiverSortOrder\":\"65\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - Justin Schaapveld (@shapfeezy)\",\"id\":\"0033\",\"waiverSortOrder\":\"64\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0034.png\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0034.png\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fantasy Football Weekly, Shock Fantasy - Mathew Harrison (@ExplosiveOutput)\",\"id\":\"0034\",\"waiverSortOrder\":\"63\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fox Sports Australia - Phil Prior (@phil_prior)\",\"id\":\"0035\",\"waiverSortOrder\":\"62\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0036.jpg\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0036.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Devy Happy Hour - Skip Newton (@skipnewton31)\",\"id\":\"0036\",\"waiverSortOrder\":\"61\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0037.jpg\",\"abbrev\":\"FFPP-2V\",\"division\":\"03\",\"name\":\"Fantasy Football Party Podcast - John Tuvey (@jtuvey)\",\"waiverSortOrder\":\"60\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0037.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0037\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Footballguys - Daniel Simpkins (@xfantasyphoenix)\",\"id\":\"0038\",\"waiverSortOrder\":\"59\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0039.jpg\",\"division\":\"03\",\"name\":\"Fan - Brian Frye (@5FryeMoments)\",\"waiverSortOrder\":\"58\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0039.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0039\",\"stadium\":\"Wayne Chrebet Stadium \"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Run to Daylight Podcast - Tod Burros (@TodfromPa)\",\"id\":\"0040\",\"waiverSortOrder\":\"57\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fantasy Intervention - Chase Vernon (@FF_intervention)\",\"id\":\"0041\",\"waiverSortOrder\":\"56\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fan - Tina Kampa (@vkngvxn)\",\"id\":\"0042\",\"waiverSortOrder\":\"55\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fan - David McGuire (@D_Mac_BOOM)\",\"id\":\"0043\",\"waiverSortOrder\":\"54\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"RotoUnderworld / PlayerProfiler - Eric McClung (@ericmcclung)\",\"id\":\"0044\",\"waiverSortOrder\":\"53\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"ESPN - Jeff Borzello (@Jeffborzello)\",\"id\":\"0045\",\"waiverSortOrder\":\"52\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"FantasyForesight.com - Ben Carlson (@ForesightBen)\",\"id\":\"0046\",\"waiverSortOrder\":\"51\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"The Tyler and Eli Fantasy Football Tips Podcast - Tyler Belawske (@TylerBelawske)\",\"id\":\"0047\",\"waiverSortOrder\":\"50\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fan - Zach Judice (@zjuice03 )\",\"id\":\"0048\",\"waiverSortOrder\":\"49\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Jordan Thompson (@Jothomps016)\",\"id\":\"0049\",\"waiverSortOrder\":\"48\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fantistics Insider Football, My Fantasy Fix, Peoria Fantasy Focus (101.1 ESPN Peoria) - Skeeter Robinson (@skeeterrobinson)\",\"id\":\"0050\",\"waiverSortOrder\":\"47\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Footballguys.com - James Brimacombe (@JamesBrimacombe)\",\"id\":\"0051\",\"waiverSortOrder\":\"46\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Draft Sharks - Jared Smola (@SmolaDS)\",\"id\":\"0052\",\"waiverSortOrder\":\"45\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0053.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Walter Smith (@Wsfoot8)\",\"id\":\"0053\",\"waiverSortOrder\":\"44\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0054.png\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0054.png\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"FantasyAlarm & Razzball - Andy Spiteri (@gasdoc_spit)\",\"id\":\"0054\",\"waiverSortOrder\":\"43\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"PFF - Phillip Watkins (@Advantalytics)\",\"id\":\"0055\",\"waiverSortOrder\":\"42\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Chief Fantasy Sports - Fantasy Chief (@FantasyChiefFF)\",\"id\":\"0056\",\"waiverSortOrder\":\"41\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"The Duel - Jason Schandl (@JasonSchandl)\",\"id\":\"0057\",\"waiverSortOrder\":\"40\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Footballguys.com - Andrew Davenport (@DrewFBGAuctions)\",\"id\":\"0058\",\"waiverSortOrder\":\"39\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0059.jpg\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0059.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Kyle Lee (@Kyle_FFRecon)\",\"id\":\"0059\",\"waiverSortOrder\":\"38\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Joe Colonna (@JoeyColonna)\",\"id\":\"0060\",\"waiverSortOrder\":\"37\"},{\"abbrev\":\"AJ41\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"The AA Football Podcast - Austin Artinger (@AJ_Artinger41)\",\"id\":\"0061\",\"waiverSortOrder\":\"36\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Footballguys - Justin Howe (@JustinHoweFBG)\",\"id\":\"0062\",\"waiverSortOrder\":\"35\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Dave Biddiscombe (@Ff_monsters)\",\"id\":\"0063\",\"waiverSortOrder\":\"34\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"DLF - Stephen Gill (@stephengill_ts)\",\"id\":\"0064\",\"waiverSortOrder\":\"33\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Taekcast - Davis Mattek (@DavisMattek )\",\"id\":\"0065\",\"waiverSortOrder\":\"32\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"4for4 - Alex Gelhar (@AlexGelhar)\",\"id\":\"0066\",\"waiverSortOrder\":\"31\"},{\"logo\":\"https://images2.imgbox.com/24/0c/gT0rrLjN_o.jpg\",\"icon\":\"https://images2.imgbox.com/24/0c/gT0rrLjN_o.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"IDPguys.org or @IDPGuys - Nathan Cheatham (@Natecheat)\",\"id\":\"0067\",\"waiverSortOrder\":\"30\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Eric Belair (@ericbelair)\",\"id\":\"0068\",\"waiverSortOrder\":\"29\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Anthony F (@Fugazilifefb)\",\"id\":\"0069\",\"waiverSortOrder\":\"28\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0070.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"www.FantasyWireHQ.com - Frank Bonincontri (@FantasyWireHQ)\",\"id\":\"0070\",\"waiverSortOrder\":\"27\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Www.razzball.com - Nicolas Romero (@NicRomeroFF)\",\"id\":\"0071\",\"waiverSortOrder\":\"26\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Mike Jernigan (@MikeJernigan79)\",\"id\":\"0072\",\"waiverSortOrder\":\"25\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Gridiron Experts - Seth Keller (@Fftheathomedad)\",\"id\":\"0073\",\"waiverSortOrder\":\"24\"},{\"logo\":\"https://i.pinimg.com/originals/a0/60/6c/a0606cc71a797857fe63d09d37824796.gif\",\"icon\":\"https://i.pinimg.com/originals/a0/60/6c/a0606cc71a797857fe63d09d37824796.gif\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Fan - Diego Lopez (@Diego24fps)\",\"id\":\"0074\",\"waiverSortOrder\":\"23\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"NFL Editor, Bleacher Report - Ian Kenyon (@IanKenyonNFL)\",\"id\":\"0075\",\"waiverSortOrder\":\"22\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Createarank.com - Jenna Davis (@Fantasygirlru)\",\"id\":\"0076\",\"waiverSortOrder\":\"21\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Fan - Renee Golden (@mrsfantasydetes)\",\"id\":\"0077\",\"waiverSortOrder\":\"20\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"The Fantasy Footballers - Michael Wenrich (@Mpw270)\",\"id\":\"0078\",\"waiverSortOrder\":\"19\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"fightingchancefantasy.com - Steve Rapin (@fantasygeek37)\",\"id\":\"0079\",\"waiverSortOrder\":\"18\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"FantasySharks - Lisa London (@Leedoglaw)\",\"id\":\"0080\",\"waiverSortOrder\":\"17\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Fan - Andrew Douglas (@Adougy13)\",\"id\":\"0081\",\"waiverSortOrder\":\"16\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0082.jpg\",\"abbrev\":\"@DBK_vtd\",\"division\":\"06\",\"name\":\"Fan - Daniel Kukla (@DBK_vtd)\",\"waiverSortOrder\":\"15\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0082.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0082\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\" - Travis Rasmussen (@TravisNFL)\",\"id\":\"0083\",\"waiverSortOrder\":\"14\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Yahoo - Matt Harmon (@MattHarmon_BYB)\",\"id\":\"0084\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0085.jpg\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0085.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"DFPNetwork - Joseph Petrosino (@FFTRADERJOE)\",\"id\":\"0085\",\"waiverSortOrder\":\"12\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"ClockDodgers - Josh Crocker (@jccrocker)\",\"id\":\"0086\",\"waiverSortOrder\":\"11\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Fan - Jon Nelson (@jonnyboyrev)\",\"id\":\"0087\",\"waiverSortOrder\":\"10\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0088.jpg\",\"abbrev\":\"SGF\",\"division\":\"07\",\"name\":\"Fan - spaceghostforce (@SGFxFFChat)\",\"waiverSortOrder\":\"9\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0088.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0088\"},{\"icon\":\"https://i.imgur.com/ZSdzCRv.png\",\"abbrev\":\"@_TanHo\",\"division\":\"07\",\"name\":\"DLF, DynastyProcess - Tan Ho (@_TanHo)\",\"waiverSortOrder\":\"8\",\"logo\":\"https://i.imgur.com/0vSu83x.png\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0089\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"DLF Dynasty Podcast - Dan Meylor (@dmeylor22)\",\"id\":\"0090\",\"waiverSortOrder\":\"7\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0091.jpg\",\"abbrev\":\"DLF\",\"division\":\"07\",\"name\":\"DLF - Eric Dickens (@DLFootball)\",\"waiverSortOrder\":\"6\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0091.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0091\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Fan - Douglas Gibson (@DougyG27)\",\"id\":\"0092\",\"waiverSortOrder\":\"5\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Daily Roto - Ricky Sanders (@RSandersDFS)\",\"id\":\"0093\",\"waiverSortOrder\":\"4\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Fan - Andrew Wright (@Allwright21)\",\"id\":\"0094\",\"waiverSortOrder\":\"3\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Dynasty League Football and Destination Devy - Jordan Richards (@ChaboyJrich)\",\"id\":\"0095\",\"waiverSortOrder\":\"2\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Football Guys - Ari Ingel (@FFesq)\",\"id\":\"0096\",\"waiverSortOrder\":\"1\"}]},\"standingsSort\":\"PCT,PTS\",\"draftPlayerPool\":\"Both\",\"id\":\"65443\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":{\"url\":\"https://www73.myfantasyleague.com/2020/home/65443\",\"year\":\"2020\"}},\"rosterSize\":\"22\",\"name\":\"#SFBX Conference 5\",\"bbidSeasonLimit\":\"100\",\"draftTimer\":\"ONS\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"0039,0047,\",\"draftLimitHours\":\"8:00\",\"starters\":{\"count\":\"11\",\"position\":[{\"name\":\"QB\",\"limit\":\"1-2\"},{\"name\":\"RB\",\"limit\":\"2-6\"},{\"name\":\"WR\",\"limit\":\"3-7\"},{\"name\":\"TE\",\"limit\":\"1-5\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"16\",\"bestLineup\":\"No\",\"precision\":\"2\",\"lastRegularSeasonWeek\":\"12\",\"survivorPool\":\"Yes\",\"draftTimerSusp\":\"02 08\",\"bbidTiebreaker\":\"TIMESTAMP\",\"usesContractYear\":\"0\",\"injuredReserve\":\"0\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"16\",\"rostersPerPlayer\":\"1\",\"bbidFCFSCharge\":\"\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"divisions\":{\"count\":\"8\",\"division\":[{\"name\":\"Vortex\",\"id\":\"00\"},{\"name\":\"Starting Lineup\",\"id\":\"01\"},{\"name\":\"Sports Balls\",\"id\":\"02\"},{\"name\":\"Nerf Toys\",\"id\":\"03\"},{\"name\":\"Rod Hockey\",\"id\":\"04\"},{\"name\":\"Skateboard\",\"id\":\"05\"},{\"name\":\"Roller Skates/In Line Skates\",\"id\":\"06\"},{\"name\":\"Foosball\",\"id\":\"07\"}]},\"baseURL\":\"https://www73.myfantasyleague.com\",\"loadRosters\":\"email_draft\"},\"encoding\":\"utf-8\"}"), 
-    date = structure(1594388288, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0, namelookup = 0.00005, 
-    connect = 0.000051, pretransfer = 0.000121, starttransfer = 0.18327, 
-    total = 0.188724)), class = "response")
+    content = charToRaw("{\"version\":\"1.0\",\"league\":{\"currentWaiverType\":\"BBID_FCFS\",\"playerLimitUnit\":\"DIVISION\",\"taxiSquad\":\"0\",\"endWeek\":\"16\",\"draft_kind\":\"email\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"franchises\":{\"count\":\"96\",\"franchise\":[{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Kerry Marcum (@3boys1girlmom)\",\"id\":\"0001\",\"waiverSortOrder\":\"96\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Andy Kerr (@akerr28)\",\"id\":\"0002\",\"waiverSortOrder\":\"95\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Dynasty League Football - Jaron Foster (@DLF_JaronF)\",\"id\":\"0003\",\"waiverSortOrder\":\"94\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"DLF/Trade Addicts Podcast - Brian Harr (@BrianHarrFF)\",\"id\":\"0004\",\"waiverSortOrder\":\"93\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"FantasyGuru/EliteFantasy - Thad Houston (@rad_thad1)\",\"id\":\"0005\",\"waiverSortOrder\":\"92\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"RotoWire - Jeff Erickson (@Jeff_Erickson)\",\"id\":\"0006\",\"waiverSortOrder\":\"91\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"RotoBaller/TFF Gurus - Dan Fornek (@fornekdf)\",\"id\":\"0007\",\"waiverSortOrder\":\"90\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"RotoViz - Shawn Siegele (@FF_Contrarian)\",\"id\":\"0008\",\"waiverSortOrder\":\"89\"},{\"logo\":\"https://cdn3.vox-cdn.com/thumbor/vTMcF00puKlNZ29Lnsr4q5jCaQc=/cdn0.vox-cdn.com/uploads/chorus_asset/file/3966642/anigif_enhanced-10076-1391018930-28.0.gif\",\"icon\":\"https://cdn3.vox-cdn.com/thumbor/vTMcF00puKlNZ29Lnsr4q5jCaQc=/cdn0.vox-cdn.com/uploads/chorus_asset/file/3966642/anigif_enhanced-10076-1391018930-28.0.gif\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fantasy Alarm - Andrew Cooper (@CoopAFiasco)\",\"id\":\"0009\",\"waiverSortOrder\":\"88\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0010.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Dynasty Vipers - Bradley Martz (@BMartzy)\",\"id\":\"0010\",\"waiverSortOrder\":\"87\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Scott Eklund (@Crazycanuck_33)\",\"id\":\"0011\",\"waiverSortOrder\":\"86\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"00\",\"name\":\"Fan - Brian Quinlan (@Thestreetfa)\",\"id\":\"0012\",\"waiverSortOrder\":\"85\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"The Hot Take Podcast - Steven Toroni (@FFprofessorST3)\",\"id\":\"0013\",\"waiverSortOrder\":\"84\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0014.jpg\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0014.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"<b><font color=Orange>Fan - Jeff Hewitt (@commishposition)</font></b>\",\"id\":\"0014\",\"waiverSortOrder\":\"83\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"FTN/4for4 - Ryan Noonan (@RyNoonan)\",\"id\":\"0015\",\"waiverSortOrder\":\"82\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"FootballDiehards.com, SiriusXM Fantasy Sports Radio - Bob Harris (@footballdiehard)\",\"id\":\"0016\",\"waiverSortOrder\":\"81\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"DK Live and Lineup Lab - Mike Barner (@rotomikebarner )\",\"id\":\"0017\",\"waiverSortOrder\":\"80\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fade The Noise - Daniel Kelley (@danieltkelley)\",\"id\":\"0018\",\"waiverSortOrder\":\"79\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fan - Kurt Holiday (@SpringbokSFFC)\",\"id\":\"0019\",\"waiverSortOrder\":\"78\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"RotoWire - Michael Rathburn (@FantasyRath)\",\"id\":\"0020\",\"waiverSortOrder\":\"77\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fantasy Footballers - Kyle Borgognoni (@kyle_borg)\",\"id\":\"0021\",\"waiverSortOrder\":\"76\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fan - jerry janiga (@jerryj22)\",\"id\":\"0022\",\"waiverSortOrder\":\"75\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fan - Lou Ditta (@)\",\"id\":\"0023\",\"waiverSortOrder\":\"74\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"01\",\"name\":\"Fake Pigskin - Brian Twining (@grieserulz14)\",\"id\":\"0024\",\"waiverSortOrder\":\"73\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - LadyBallz (@michellemacatee)\",\"id\":\"0025\",\"waiverSortOrder\":\"72\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"RotoViz - Matt Wispe (@WispeyTheKid)\",\"id\":\"0026\",\"waiverSortOrder\":\"71\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - Clinton Holmgren (@clintonholmgren)\",\"id\":\"0027\",\"waiverSortOrder\":\"70\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fantasy Football Party Podcast - Anthony Maggio (@MPLSMaggio)\",\"id\":\"0028\",\"waiverSortOrder\":\"69\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0029.png\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0029.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fantasy Football Party Podcast & Sportradar - Bo Mitchell (@bo_mitchell)\",\"id\":\"0029\",\"waiverSortOrder\":\"68\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"CBS - Ben Gretch (@YardsPerGretch)\",\"id\":\"0030\",\"waiverSortOrder\":\"67\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - Diana Younan (@Datff51)\",\"id\":\"0031\",\"waiverSortOrder\":\"66\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"MyDynastyDiary - Eric Flynn (@EricJohnFlynn)\",\"id\":\"0032\",\"waiverSortOrder\":\"65\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fan - Justin Schaapveld (@shapfeezy)\",\"id\":\"0033\",\"waiverSortOrder\":\"64\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0034.png\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0034.png\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fantasy Football Weekly, Shock Fantasy - Mathew Harrison (@ExplosiveOutput)\",\"id\":\"0034\",\"waiverSortOrder\":\"63\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Fox Sports Australia - Phil Prior (@phil_prior)\",\"id\":\"0035\",\"waiverSortOrder\":\"62\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0036.jpg\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0036.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"02\",\"name\":\"Devy Happy Hour - Skip Newton (@skipnewton31)\",\"id\":\"0036\",\"waiverSortOrder\":\"61\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0037.jpg\",\"abbrev\":\"FFPP-2V\",\"division\":\"03\",\"name\":\"Fantasy Football Party Podcast - John Tuvey (@jtuvey)\",\"waiverSortOrder\":\"60\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0037.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0037\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Footballguys - Daniel Simpkins (@xfantasyphoenix)\",\"id\":\"0038\",\"waiverSortOrder\":\"59\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0039.jpg\",\"division\":\"03\",\"name\":\"Fan - Brian Frye (@5FryeMoments)\",\"waiverSortOrder\":\"58\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0039.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0039\",\"stadium\":\"Wayne Chrebet Stadium \"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Run to Daylight Podcast - Tod Burros (@TodfromPa)\",\"id\":\"0040\",\"waiverSortOrder\":\"57\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fantasy Intervention - Chase Vernon (@FF_intervention)\",\"id\":\"0041\",\"waiverSortOrder\":\"56\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fan - Tina Kampa (@vkngvxn)\",\"id\":\"0042\",\"waiverSortOrder\":\"55\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fan - David McGuire (@D_Mac_BOOM)\",\"id\":\"0043\",\"waiverSortOrder\":\"54\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"RotoUnderworld / PlayerProfiler - Eric McClung (@ericmcclung)\",\"id\":\"0044\",\"waiverSortOrder\":\"53\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"ESPN - Jeff Borzello (@Jeffborzello)\",\"id\":\"0045\",\"waiverSortOrder\":\"52\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"FantasyForesight.com - Ben Carlson (@ForesightBen)\",\"id\":\"0046\",\"waiverSortOrder\":\"51\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"The Tyler and Eli Fantasy Football Tips Podcast - Tyler Belawske (@TylerBelawske)\",\"id\":\"0047\",\"waiverSortOrder\":\"50\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"03\",\"name\":\"Fan - Zach Judice (@zjuice03 )\",\"id\":\"0048\",\"waiverSortOrder\":\"49\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Jordan Thompson (@Jothomps016)\",\"id\":\"0049\",\"waiverSortOrder\":\"48\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fantistics Insider Football, My Fantasy Fix, Peoria Fantasy Focus (101.1 ESPN Peoria) - Skeeter Robinson (@skeeterrobinson)\",\"id\":\"0050\",\"waiverSortOrder\":\"47\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Footballguys.com - James Brimacombe (@JamesBrimacombe)\",\"id\":\"0051\",\"waiverSortOrder\":\"46\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Draft Sharks - Jared Smola (@SmolaDS)\",\"id\":\"0052\",\"waiverSortOrder\":\"45\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0053.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Walter Smith (@Wsfoot8)\",\"id\":\"0053\",\"waiverSortOrder\":\"44\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0054.png\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0054.png\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"FantasyAlarm & Razzball - Andy Spiteri (@gasdoc_spit)\",\"id\":\"0054\",\"waiverSortOrder\":\"43\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"PFF - Phillip Watkins (@Advantalytics)\",\"id\":\"0055\",\"waiverSortOrder\":\"42\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Chief Fantasy Sports - Fantasy Chief (@FantasyChiefFF)\",\"id\":\"0056\",\"waiverSortOrder\":\"41\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"The Duel - Jason Schandl (@JasonSchandl)\",\"id\":\"0057\",\"waiverSortOrder\":\"40\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Footballguys.com - Andrew Davenport (@DrewFBGAuctions)\",\"id\":\"0058\",\"waiverSortOrder\":\"39\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0059.jpg\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0059.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Kyle Lee (@Kyle_FFRecon)\",\"id\":\"0059\",\"waiverSortOrder\":\"38\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"04\",\"name\":\"Fan - Joe Colonna (@JoeyColonna)\",\"id\":\"0060\",\"waiverSortOrder\":\"37\"},{\"abbrev\":\"AJ41\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"The AA Football Podcast - Austin Artinger (@AJ_Artinger41)\",\"id\":\"0061\",\"waiverSortOrder\":\"36\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Footballguys - Justin Howe (@JustinHoweFBG)\",\"id\":\"0062\",\"waiverSortOrder\":\"35\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Dave Biddiscombe (@Ff_monsters)\",\"id\":\"0063\",\"waiverSortOrder\":\"34\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"DLF - Stephen Gill (@stephengill_ts)\",\"id\":\"0064\",\"waiverSortOrder\":\"33\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Taekcast - Davis Mattek (@DavisMattek )\",\"id\":\"0065\",\"waiverSortOrder\":\"32\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"4for4 - Alex Gelhar (@AlexGelhar)\",\"id\":\"0066\",\"waiverSortOrder\":\"31\"},{\"logo\":\"https://images2.imgbox.com/24/0c/gT0rrLjN_o.jpg\",\"icon\":\"https://images2.imgbox.com/24/0c/gT0rrLjN_o.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"IDPguys.org or @IDPGuys - Nathan Cheatham (@Natecheat)\",\"id\":\"0067\",\"waiverSortOrder\":\"30\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Eric Belair (@ericbelair)\",\"id\":\"0068\",\"waiverSortOrder\":\"29\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Anthony F (@Fugazilifefb)\",\"id\":\"0069\",\"waiverSortOrder\":\"28\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0070.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"www.FantasyWireHQ.com - Frank Bonincontri (@FantasyWireHQ)\",\"id\":\"0070\",\"waiverSortOrder\":\"27\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Www.razzball.com - Nicolas Romero (@NicRomeroFF)\",\"id\":\"0071\",\"waiverSortOrder\":\"26\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"05\",\"name\":\"Fan - Mike Jernigan (@MikeJernigan79)\",\"id\":\"0072\",\"waiverSortOrder\":\"25\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Gridiron Experts - Seth Keller (@Fftheathomedad)\",\"id\":\"0073\",\"waiverSortOrder\":\"24\"},{\"logo\":\"https://i.pinimg.com/originals/a0/60/6c/a0606cc71a797857fe63d09d37824796.gif\",\"icon\":\"https://i.pinimg.com/originals/a0/60/6c/a0606cc71a797857fe63d09d37824796.gif\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Fan - Diego Lopez (@Diego24fps)\",\"id\":\"0074\",\"waiverSortOrder\":\"23\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"NFL Editor, Bleacher Report - Ian Kenyon (@IanKenyonNFL)\",\"id\":\"0075\",\"waiverSortOrder\":\"22\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Createarank.com - Jenna Davis (@Fantasygirlru)\",\"id\":\"0076\",\"waiverSortOrder\":\"21\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Fan - Renee Golden (@mrsfantasydetes)\",\"id\":\"0077\",\"waiverSortOrder\":\"20\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"The Fantasy Footballers - Michael Wenrich (@Mpw270)\",\"id\":\"0078\",\"waiverSortOrder\":\"19\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"fightingchancefantasy.com - Steve Rapin (@fantasygeek37)\",\"id\":\"0079\",\"waiverSortOrder\":\"18\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"FantasySharks - Lisa London (@Leedoglaw)\",\"id\":\"0080\",\"waiverSortOrder\":\"17\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Fan - Andrew Douglas (@Adougy13)\",\"id\":\"0081\",\"waiverSortOrder\":\"16\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0082.jpg\",\"abbrev\":\"@DBK_vtd\",\"division\":\"06\",\"name\":\"Fan - Daniel Kukla (@DBK_vtd)\",\"waiverSortOrder\":\"15\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0082.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0082\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\" - Travis Rasmussen (@TravisNFL)\",\"id\":\"0083\",\"waiverSortOrder\":\"14\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"06\",\"name\":\"Yahoo - Matt Harmon (@MattHarmon_BYB)\",\"id\":\"0084\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0085.jpg\",\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0085.jpg\",\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"DFPNetwork - Joseph Petrosino (@FFTRADERJOE)\",\"id\":\"0085\",\"waiverSortOrder\":\"12\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"ClockDodgers - Josh Crocker (@jccrocker)\",\"id\":\"0086\",\"waiverSortOrder\":\"11\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Fan - Jon Nelson (@jonnyboyrev)\",\"id\":\"0087\",\"waiverSortOrder\":\"10\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0088.jpg\",\"abbrev\":\"SGF\",\"division\":\"07\",\"name\":\"Fan - spaceghostforce (@SGFxFFChat)\",\"waiverSortOrder\":\"9\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0088.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0088\"},{\"icon\":\"https://i.imgur.com/ZSdzCRv.png\",\"abbrev\":\"@_TanHo\",\"division\":\"07\",\"name\":\"DLF, DynastyProcess - Tan Ho (@_TanHo)\",\"waiverSortOrder\":\"8\",\"logo\":\"https://i.imgur.com/0vSu83x.png\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0089\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"DLF Dynasty Podcast - Dan Meylor (@dmeylor22)\",\"id\":\"0090\",\"waiverSortOrder\":\"7\"},{\"icon\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_icon0091.jpg\",\"abbrev\":\"DLF\",\"division\":\"07\",\"name\":\"DLF - Eric Dickens (@DLFootball)\",\"waiverSortOrder\":\"6\",\"logo\":\"https://www73.myfantasyleague.com/fflnetdynamic2020/65443_franchise_logo0091.jpg\",\"bbidAvailableBalance\":\"100.00\",\"id\":\"0091\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Fan - Douglas Gibson (@DougyG27)\",\"id\":\"0092\",\"waiverSortOrder\":\"5\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Daily Roto - Ricky Sanders (@RSandersDFS)\",\"id\":\"0093\",\"waiverSortOrder\":\"4\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Fan - Andrew Wright (@Allwright21)\",\"id\":\"0094\",\"waiverSortOrder\":\"3\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Dynasty League Football and Destination Devy - Jordan Richards (@ChaboyJrich)\",\"id\":\"0095\",\"waiverSortOrder\":\"2\"},{\"bbidAvailableBalance\":\"100.00\",\"division\":\"07\",\"name\":\"Football Guys - Ari Ingel (@FFesq)\",\"id\":\"0096\",\"waiverSortOrder\":\"1\"}]},\"standingsSort\":\"PCT,PTS\",\"draftPlayerPool\":\"Both\",\"id\":\"65443\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":{\"url\":\"https://www73.myfantasyleague.com/2020/home/65443\",\"year\":\"2020\"}},\"rosterSize\":\"22\",\"name\":\"#SFBX Conference 5\",\"bbidSeasonLimit\":\"100\",\"draftTimer\":\"ONS\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"0039,0047,\",\"draftLimitHours\":\"8:00\",\"starters\":{\"count\":\"11\",\"position\":[{\"name\":\"QB\",\"limit\":\"1-2\"},{\"name\":\"RB\",\"limit\":\"2-6\"},{\"name\":\"WR\",\"limit\":\"3-7\"},{\"name\":\"TE\",\"limit\":\"1-5\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"16\",\"bestLineup\":\"No\",\"precision\":\"2\",\"lastRegularSeasonWeek\":\"12\",\"survivorPool\":\"Yes\",\"draftTimerSusp\":\"02 08\",\"bbidTiebreaker\":\"TIMESTAMP\",\"usesContractYear\":\"0\",\"injuredReserve\":\"0\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"16\",\"bbidFCFSCharge\":\"\",\"rostersPerPlayer\":\"1\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"divisions\":{\"count\":\"8\",\"division\":[{\"name\":\"Vortex\",\"id\":\"00\"},{\"name\":\"Starting Lineup\",\"id\":\"01\"},{\"name\":\"Sports Balls\",\"id\":\"02\"},{\"name\":\"Nerf Toys\",\"id\":\"03\"},{\"name\":\"Rod Hockey\",\"id\":\"04\"},{\"name\":\"Skateboard\",\"id\":\"05\"},{\"name\":\"Roller Skates/In Line Skates\",\"id\":\"06\"},{\"name\":\"Foosball\",\"id\":\"07\"}]},\"baseURL\":\"https://www73.myfantasyleague.com\",\"loadRosters\":\"email_draft\"},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849348, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.140948, namelookup = 0.000127, 
+    connect = 0.000131, pretransfer = 0.000322, starttransfer = 0.343435, 
+    total = 0.344374)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-5b11ff.R b/tests/testthat/api.myfantasyleague.com/2020/export-5b11ff.R
index 894082f9..4bb1bfb8 100644
--- a/tests/testthat/api.myfantasyleague.com/2020/export-5b11ff.R
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-5b11ff.R
@@ -1,15 +1,15 @@
 structure(list(url = "https://www61.myfantasyleague.com/2020/export?TYPE=league&L=54040&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Fri, 10 Jul 2020 15:53:36 GMT", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:29:14 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
         `content-length` = "1127", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
     "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Fri, 10 Jul 2020 15:53:36 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:14 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             location = "https://www61.myfantasyleague.com/2020/export?TYPE=league&L=54040&JSON=1", 
             `content-length` = "0", targethost = "www70"), class = c("insensitive", 
         "list"))), list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Fri, 10 Jul 2020 15:53:36 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:14 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
             `content-length` = "1127", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
@@ -18,7 +18,7 @@ structure(list(url = "https://www61.myfantasyleague.com/2020/export?TYPE=league&
         expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
     content = charToRaw("{\"version\":\"1.0\",\"league\":{\"currentWaiverType\":\"BBID\",\"playerLimitUnit\":\"LEAGUE\",\"taxiSquad\":\"3\",\"endWeek\":\"17\",\"maxWaiverRounds\":\"8\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"franchises\":{\"count\":\"14\",\"franchise\":[{\"logo\":\"https://i.imgur.com/purgTuY.png\",\"icon\":\"https://i.imgur.com/purgTuY.png\",\"abbrev\":\"PIKA\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Pikachu\",\"id\":\"0001\",\"waiverSortOrder\":\"14\"},{\"logo\":\"https://i.imgur.com/spJaesT.png\",\"icon\":\"https://i.imgur.com/spJaesT.png\",\"abbrev\":\"SIMN\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Simon Belmont\",\"id\":\"0002\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://i.imgur.com/UW6ES3y.png\",\"icon\":\"https://i.imgur.com/UW6ES3y.png\",\"abbrev\":\"CFCN\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Captain Falcon\",\"id\":\"0003\",\"waiverSortOrder\":\"12\"},{\"logo\":\"https://i.imgur.com/Z51OK27.png\",\"icon\":\"https://i.imgur.com/Z51OK27.png\",\"abbrev\":\"ICE\",\"bbidAvailableBalance\":\"158.00\",\"name\":\"Team Ice Climbers\",\"id\":\"0004\",\"waiverSortOrder\":\"11\"},{\"logo\":\"https://i.imgur.com/wENaJKg.png\",\"icon\":\"https://i.imgur.com/wENaJKg.png\",\"abbrev\":\"DRM\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Dr. Mario\",\"id\":\"0005\",\"waiverSortOrder\":\"10\"},{\"logo\":\"https://i.imgur.com/5LnPtDi.png\",\"icon\":\"https://i.imgur.com/5LnPtDi.png\",\"abbrev\":\"KDDD\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team King Dedede\",\"id\":\"0006\",\"waiverSortOrder\":\"9\"},{\"logo\":\"https://i.imgur.com/eift9jP.png\",\"icon\":\"https://i.imgur.com/eift9jP.png\",\"abbrev\":\"KRBY\",\"bbidAvailableBalance\":\"198.00\",\"name\":\"Team Kirby\",\"id\":\"0007\",\"waiverSortOrder\":\"8\"},{\"logo\":\"https://i.imgur.com/AMtyw0W.png\",\"icon\":\"https://i.imgur.com/AMtyw0W.png\",\"abbrev\":\"FOX\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Fox\",\"id\":\"0008\",\"waiverSortOrder\":\"7\"},{\"logo\":\"https://i.imgur.com/0zprlfO.png\",\"icon\":\"https://i.imgur.com/0zprlfO.png\",\"abbrev\":\"LINK\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Link\",\"id\":\"0009\",\"waiverSortOrder\":\"6\"},{\"logo\":\"https://i.imgur.com/RvsGTLu.png\",\"icon\":\"https://i.imgur.com/RvsGTLu.png\",\"abbrev\":\"YSHI\",\"bbidAvailableBalance\":\"173.00\",\"name\":\"Team Yoshi\",\"id\":\"0010\",\"waiverSortOrder\":\"5\"},{\"logo\":\"https://i.imgur.com/zDt3q5J.png\",\"icon\":\"https://i.imgur.com/zDt3q5J.png\",\"abbrev\":\"DDY\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Diddy Kong\",\"id\":\"0011\",\"waiverSortOrder\":\"4\"},{\"logo\":\"https://i.imgur.com/GHB1pVY.png\",\"icon\":\"https://i.imgur.com/GHB1pVY.png\",\"abbrev\":\"MEW2\",\"bbidAvailableBalance\":\"200.00\",\"name\":\"Team Mewtwo\",\"id\":\"0012\",\"waiverSortOrder\":\"3\"},{\"logo\":\"https://i.imgur.com/lp2XsQE.png\",\"icon\":\"https://i.imgur.com/lp2XsQE.png\",\"bbidAvailableBalance\":\"179.00\",\"name\":\"Team Ness\",\"id\":\"0013\",\"waiverSortOrder\":\"2\"},{\"logo\":\"https://i.imgur.com/AQJ99hs.png\",\"icon\":\"https://i.imgur.com/AQJ99hs.png\",\"abbrev\":\"LUIG\",\"bbidAvailableBalance\":\"191.00\",\"name\":\"Team Luigi\",\"id\":\"0014\",\"waiverSortOrder\":\"1\"}]},\"standingsSort\":\"PCT,PTS,\",\"id\":\"54040\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":[{\"url\":\"https://www61.myfantasyleague.com/2020/home/54040\",\"year\":\"2020\"},{\"url\":\"https://www61.myfantasyleague.com/2018/home/54040\",\"year\":\"2018\"},{\"url\":\"https://www61.myfantasyleague.com/2019/home/54040\",\"year\":\"2019\"}]},\"rosterSize\":\"32\",\"name\":\"The Super Smash Bros Dynasty League\",\"bbidSeasonLimit\":\"200\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"\",\"starters\":{\"count\":\"9\",\"position\":[{\"name\":\"QB\",\"limit\":\"1\"},{\"name\":\"RB\",\"limit\":\"1-6\"},{\"name\":\"WR\",\"limit\":\"1-6\"},{\"name\":\"TE\",\"limit\":\"1-6\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"17\",\"bestLineup\":\"Yes\",\"precision\":\"2\",\"lastRegularSeasonWeek\":\"16\",\"survivorPool\":\"Yes\",\"bbidTiebreaker\":\"TURN\",\"usesContractYear\":\"0\",\"injuredReserve\":\"0\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"17\",\"rostersPerPlayer\":\"1\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"baseURL\":\"https://www61.myfantasyleague.com\",\"loadRosters\":\"none\"},\"encoding\":\"utf-8\"}"), 
-    date = structure(1594396416, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0.133007, namelookup = 0.000195, 
-    connect = 0.000202, pretransfer = 0.000547, starttransfer = 0.28176, 
-    total = 0.294458)), class = "response")
+    date = structure(1595849354, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.149286, namelookup = 0.000391, 
+    connect = 0.000405, pretransfer = 0.00096, starttransfer = 0.43213, 
+    total = 0.432704)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-96a6d5.R b/tests/testthat/api.myfantasyleague.com/2020/export-96a6d5.R
index 9de21361..c8695755 100644
--- a/tests/testthat/api.myfantasyleague.com/2020/export-96a6d5.R
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-96a6d5.R
@@ -1,11 +1,11 @@
 structure(list(url = "https://api.myfantasyleague.com/2020/export?TYPE=players&DETAILS=1&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 02:07:46 GMT", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:33:00 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
         `content-type` = "application/json; charset=utf-8", targethost = "www70", 
         `transfer-encoding` = "chunked"), class = c("insensitive", 
     "list")), all_headers = list(list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Mon, 27 Jul 2020 02:07:46 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:33:00 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
             `content-type` = "application/json; charset=utf-8", 
@@ -14,8 +14,8 @@ structure(list(url = "https://api.myfantasyleague.com/2020/export?TYPE=players&D
         flag = logical(0), path = logical(0), secure = logical(0), 
         expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
-    content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"1595802313\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"stats_id\":\"2\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"twitter_username\":\"buffalobills\",\"id\":\"0501\",\"team\":\"BUF\",\"cbs_id\":\"409\",\"fleaflicker_id\":\"2331\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"stats_id\":\"11\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"twitter_username\":\"nflcolts\",\"id\":\"0502\",\"team\":\"IND\",\"cbs_id\":\"402\",\"fleaflicker_id\":\"2341\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"stats_id\":\"15\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"twitter_username\":\"MiamiDolphins\",\"id\":\"0503\",\"team\":\"MIA\",\"cbs_id\":\"404\",\"fleaflicker_id\":\"2344\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"stats_id\":\"17\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"twitter_username\":\"patriots\",\"id\":\"0504\",\"team\":\"NEP\",\"cbs_id\":\"406\",\"fleaflicker_id\":\"2346\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"stats_id\":\"20\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"nyjets\",\"id\":\"0505\",\"team\":\"NYJ\",\"cbs_id\":\"410\",\"fleaflicker_id\":\"2349\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"stats_id\":\"4\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"twitter_username\":\"Bengals\",\"id\":\"0506\",\"team\":\"CIN\",\"cbs_id\":\"426\",\"fleaflicker_id\":\"2334\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"stats_id\":\"5\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"twitter_username\":\"OfficialBrowns\",\"id\":\"0507\",\"team\":\"CLE\",\"cbs_id\":\"419\",\"fleaflicker_id\":\"2335\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"stats_id\":\"10\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"twitter_username\":\"tennesseetitans\",\"id\":\"0508\",\"team\":\"TEN\",\"cbs_id\":\"431\",\"fleaflicker_id\":\"2358\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"stats_id\":\"30\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"twitter_username\":\"jaguarsinsider\",\"id\":\"0509\",\"team\":\"JAC\",\"cbs_id\":\"422\",\"fleaflicker_id\":\"2342\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"stats_id\":\"23\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"twitter_username\":\"steelers\",\"id\":\"0510\",\"team\":\"PIT\",\"cbs_id\":\"413\",\"fleaflicker_id\":\"2352\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"stats_id\":\"7\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"twitter_username\":\"DenverBroncos\",\"id\":\"0511\",\"team\":\"DEN\",\"cbs_id\":\"428\",\"fleaflicker_id\":\"2337\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"stats_id\":\"12\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"twitter_username\":\"kcchiefs\",\"id\":\"0512\",\"team\":\"KCC\",\"cbs_id\":\"403\",\"fleaflicker_id\":\"2343\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"stats_id\":\"13\",\"position\":\"Def\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"twitter_username\":\"raiders\",\"id\":\"0513\",\"team\":\"LVR\",\"cbs_id\":\"424\",\"fleaflicker_id\":\"2350\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"stats_id\":\"24\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"chargers\",\"id\":\"0514\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"stats_id\":\"26\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"twitter_username\":\"seahawks\",\"id\":\"0515\",\"team\":\"SEA\",\"cbs_id\":\"416\",\"fleaflicker_id\":\"2354\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"stats_id\":\"6\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"twitter_username\":\"dallascowboys\",\"id\":\"0516\",\"team\":\"DAL\",\"cbs_id\":\"427\",\"fleaflicker_id\":\"2336\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"stats_id\":\"19\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"giants\",\"id\":\"0517\",\"team\":\"NYG\",\"cbs_id\":\"408\",\"fleaflicker_id\":\"2348\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"stats_id\":\"21\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"twitter_username\":\"Eagles\",\"id\":\"0518\",\"team\":\"PHI\",\"cbs_id\":\"411\",\"fleaflicker_id\":\"2351\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"stats_id\":\"22\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"twitter_username\":\"AZCardinals\",\"id\":\"0519\",\"team\":\"ARI\",\"cbs_id\":\"412\",\"fleaflicker_id\":\"2328\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"stats_id\":\"28\",\"position\":\"Def\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"twitter_username\":\"Redskins\",\"id\":\"0520\",\"team\":\"WAS\",\"cbs_id\":\"418\",\"fleaflicker_id\":\"2359\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"stats_id\":\"3\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"twitter_username\":\"ChicagoBears\",\"id\":\"0521\",\"team\":\"CHI\",\"cbs_id\":\"421\",\"fleaflicker_id\":\"2333\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"stats_id\":\"8\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"twitter_username\":\"detroitlionsnfl\",\"id\":\"0522\",\"team\":\"DET\",\"cbs_id\":\"429\",\"fleaflicker_id\":\"2338\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"stats_id\":\"9\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"packers\",\"id\":\"0523\",\"team\":\"GBP\",\"cbs_id\":\"430\",\"fleaflicker_id\":\"2339\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"stats_id\":\"16\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"twitter_username\":\"Vikings\",\"id\":\"0524\",\"team\":\"MIN\",\"cbs_id\":\"405\",\"fleaflicker_id\":\"2345\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"stats_id\":\"27\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"TBBuccaneers\",\"id\":\"0525\",\"team\":\"TBB\",\"cbs_id\":\"417\",\"fleaflicker_id\":\"2357\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"stats_id\":\"1\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"twitter_username\":\"AtlantaFalcons\",\"id\":\"0526\",\"team\":\"ATL\",\"cbs_id\":\"401\",\"fleaflicker_id\":\"2329\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"stats_id\":\"29\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"twitter_username\":\"Panthers\",\"id\":\"0527\",\"team\":\"CAR\",\"cbs_id\":\"420\",\"fleaflicker_id\":\"2332\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"stats_id\":\"14\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"STLouisRams\",\"id\":\"0528\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"stats_id\":\"18\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"twitter_username\":\"saints\",\"id\":\"0529\",\"team\":\"NOS\",\"cbs_id\":\"407\",\"fleaflicker_id\":\"2347\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"stats_id\":\"25\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"twitter_username\":\"49ers\",\"id\":\"0530\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"stats_id\":\"33\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"twitter_username\":\"ravens\",\"id\":\"0531\",\"team\":\"BAL\",\"cbs_id\":\"425\",\"fleaflicker_id\":\"2330\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"stats_id\":\"34\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"twitter_username\":\"houstontexans\",\"id\":\"0532\",\"team\":\"HOU\",\"cbs_id\":\"432\",\"fleaflicker_id\":\"2340\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1994\",\"draft_team\":\"NYJ\",\"stats_id\":\"39685\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"twitter_username\":\"PeteCarroll\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"birthdate\":\"94366800\",\"draft_team\":\"FA\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"rotowire_id\":\"395\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"aVinatieri4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"team\":\"FA\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"IND\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"TBB\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"FA\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"FA\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"FA\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"LVR\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"FA\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"IND\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"FA\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"WAS\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"20\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"NYJ\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"2\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"FA\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"FA\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"FA\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"24\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"TEN\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"FA\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"FA\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"FA\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"FA\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"twitter_username\":\"CoachTomlin\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"26\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"WAS\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"FA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"CHI\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"SEA\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"FA\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"FA\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"fleaflicker_id\":\"4848\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"FA\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"2\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"FA\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"KCC\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"CB\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"FA\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"BAL\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"NYJ\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"FA\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"fleaflicker_id\":\"5372\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"FA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"FA\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"BUF\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"FA\",\"cbs_id\":\"519042\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"FA\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"NOS\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"FA\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"FA\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"FA\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"4\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"FA\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"9\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"CAR\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"DET\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"NEP\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"FA\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"CAR\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"DAL\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"FA\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"CIN\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"FA\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"BAL\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"FA\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"FA\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"NYG\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"TBB\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"98\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"LAC\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"FA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"FA\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"10\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"NOS\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"8\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"CHI\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DE\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"72\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"JAC\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"FA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"FA*\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"fleaflicker_id\":\"6799\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"FA\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"FA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"FA\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"FA\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"FA\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"NYJ\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"FA\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"42\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"CLE\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"FA\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"twitter_username\":\"RiverboatRonHC\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"99\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"CLE\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"LVR\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"FA\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"LB\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"58\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"CHI\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"NEP\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"aldonsmith/2495487\",\"rotoworld_id\":\"6477\",\"stats_id\":\"24794\",\"position\":\"DE\",\"stats_global_id\":\"463434\",\"espn_id\":\"13988\",\"weight\":\"265\",\"id\":\"10274\",\"birthdate\":\"628405200\",\"draft_team\":\"SFO\",\"name\":\"Smith, Aldon\",\"draft_pick\":\"7\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7446\",\"jersey\":\"99\",\"twitter_username\":\"AldonSmith\",\"sportsdata_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"team\":\"DAL\",\"cbs_id\":\"1630791\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"99\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"DE\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"FA\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"HOU\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"DAL\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"FA\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"FA\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"FA\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"FA\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"DEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"FA\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"80\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"FA\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"34\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"BUF\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"FA\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"NYG\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"FA\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"FA\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"FA\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"FA\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"51\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"FA\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"DAL\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"FA\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"BUF\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"LAC\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"CIN\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"7\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"CHI\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"FA\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"FA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"NEP\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"FA\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"12\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"SFO\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"fleaflicker_id\":\"8577\",\"birthdate\":\"609570000\",\"draft_team\":\"SDC\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"FA\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"DAL\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"55\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"SEA\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"FA\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"FA\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"27\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"FA\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"26\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"FA\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"fleaflicker_id\":\"8472\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"BAL\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"FA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"32\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"FA\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"FA\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"FA\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"LVR\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"FA\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"FA\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"96\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"FA\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"59\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"CAR\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"FA\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"24\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"BUF\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DE\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"95\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"TEN\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"4\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"DAL\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"FA\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"28\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NYG\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"NYG\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"LVR\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"8\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"CLE\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"FA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"10\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"FA\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"FA\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"FA\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"39\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"CHI\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"FA\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"twitter_username\":\"BruceArians\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"TEN\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"fleaflicker_id\":\"9009\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"FA\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"BUF\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"FA\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"NYJ\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"7\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"JAC\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"FA\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"25\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"JAC\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"FA\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"NYJ\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"FA\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"10\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"FA\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"10\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"ARI\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"FA\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"11\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"PHI\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"86\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"FA\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"85\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"JAC\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"83\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"NYG\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"97\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"FA\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"FA\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"NOS\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DE\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"LVR\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"FA\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"FA\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"77\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"CHI\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"FA\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"FA\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"51\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"CHI\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"47\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"NOS\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"21\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"DET\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"29\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"IND\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"26\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"FA\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"8\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"SFO\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"FA\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"FA\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"FA\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"23\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"PHI\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"8\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"DET\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"FA\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"21\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"DET\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"FA\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"53\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"BUF\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"SEA\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"SEA\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DEN\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"85\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DT\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"FA\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"DET\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"S\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"FA\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"88\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CHI\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"FA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"FA\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"ATL\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"FA\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"SEA\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"FA\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"ATL\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"23\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"PHI\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"FA\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"DEN\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"FA\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"FA\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"SEA\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"0\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"JAC\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"LVR\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"NEP\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"FA\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"HOU\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"FA\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"HOU\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"CAR\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"FA\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"LVR\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"WAS\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"34\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"SEA\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"5\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"FA*\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"FA\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"11\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"NEP\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"12\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"HOU\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"FA\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"FA\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"FA\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"PIT\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"IND\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"IND\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"FA*\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"JAC\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"93\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"HOU\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"PIT\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"PIT\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"MIA\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"51\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"21\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"FA\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"WAS\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"DAL\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"CB\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"LVR\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"WAS\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"2\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"ATL\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"S\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"GBP\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"FA\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"FA\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"28\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"82\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"WAS\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"HOU\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"78\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"LB\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"91\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"JAC\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"FA\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"FA\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DT\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"FA\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"NYJ\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"CB\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"57\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"WAS\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"LVR\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"96\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"FA\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"NYJ\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"CAR\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"ARI\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"NYJ\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"NYJ\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"CLE\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, T.J.\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"IND\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"91\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"NEP\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DE\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"FA\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"FA\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"FA\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"5\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"FA\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"16\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"FA\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"TEN\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"FA\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"FA\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DT\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"CAR\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"FA\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"FA\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"0\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"DEN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"NEP\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"FA\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"FA\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"FA\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"3\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"NOS\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"LVR\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"ATL\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"DEN\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"29\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"27\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"FA\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"HOU\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"FA\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"13\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"LVR\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"DAL\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"FA\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"BUF\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"13\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"SEA\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"NYJ\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"17\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"GBP\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"83\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"FA\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"DEN\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"FA\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"FA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"DAL\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"DE\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"ATL\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"NOS\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"DE\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"WAS\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"92\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"DET\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"FA\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DE\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"ARI\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"LB\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"TEN\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"FA\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"SFO\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, A.J.\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"FA\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"FA\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"22\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"CIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"CLE\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"ATL\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NOS\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"LVR\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"31\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"MIA\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"LVR\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"S\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"21\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"WAS\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"NYG\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"97\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"HOU\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"FA\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"TEN\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DT\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"JAC\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"NOS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"FA\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"DET\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"28\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"NOS\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DE\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"95\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"DEN\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"FA\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10605\",\"stats_id\":\"28620\",\"position\":\"LB\",\"stats_global_id\":\"845648\",\"espn_id\":\"3137087\",\"weight\":\"245\",\"id\":\"12369\",\"birthdate\":\"698821200\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Edmond\",\"draft_pick\":\"15\",\"college\":\"Newberry\",\"rotowire_id\":\"10497\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"AAP_30\",\"sportsdata_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"team\":\"ATL\",\"cbs_id\":\"2174218\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"FA\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"27\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"DET\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"FA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"FA\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"LVR\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"HOU\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"FA\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"CAR\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"GBP\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"LVR\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"SEA\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"NEP\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"CAR\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"ATL\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"51\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NEP\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"TEN\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"LAC\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"0\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"PIT\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"FA\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"FA\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"6\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DEN\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"FA\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"FA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"LVR\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"NYJ\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"MIA\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"FA\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"FA\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"WAS\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"WAS\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"ATL\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"NYG\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"NYJ\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"81\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"MIN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"12\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"CAR\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"DET\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"FA\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"CIN\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"CLE\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"DEN\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"MIA\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"IND\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"DE\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"MIA\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"MIN\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"LAR\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CLE\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"NYG\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"DET\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"FA\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"FA\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"CIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"WAS\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"CAR\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"S\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"CLE\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"CIN\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"27\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"DET\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"LAR\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"CHI\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"BUF\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"TEN\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DE\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"51\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"WAS\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"FA\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"NYG\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"FA\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"LVR\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"LVR\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"S\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"JAC\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"NYJ\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"ARI\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"DAL\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"LAC\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"NYG\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"79\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PHI\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"53\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"JAC\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"96\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"IND\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"HOU\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"CLE\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"LVR\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ARI\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"64\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"S\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CAR\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"CB\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"TBB\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"SFO\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"NYG\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"FA\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"99\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"BUF\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DT\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"36\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"CIN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"CHI\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"CIN\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"FA\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"SDC\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"PHI\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"CLE\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"CHI\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"MIA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"FA\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"draft_team\":\"TBB\",\"birthdate\":\"751611600\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"NEP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"34\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"PIT\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"16\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"CHI\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"MIA\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"DAL\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"MIA\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"52\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"MIA\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"IND\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"34\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"PHI\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"BUF\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"CAR\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"MIA\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"BUF\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"SFO\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"KCC\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"CHI\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"FA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"DAL\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"LVR\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"LVR\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"FA\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"NOS\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"FA\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"CAR\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"FA\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"CHI\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"93\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"DEN\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"MIN\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"LVR\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"FA\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"FA\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"KCC\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LVR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"SFO\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"FA\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"FA\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"NYJ\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"IND\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"FA\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"NYG\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"SEA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"FA\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"WAS\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"FA\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"JAC\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"BUF\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"IND\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"NYG\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"LVR\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"JAC\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"CIN\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"FA\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"FA\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"FA\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"KCC\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"TBB\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"IND\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"MIA\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"PIT\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"PIT\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"NYJ\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"PHI\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"LVR\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"KCC\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"HOU\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"TBB\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"MIA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"KCC\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"90\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"ATL\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"ATL\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"PHI\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"75\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"NYJ\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DT\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DT\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"93\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"PIT\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"GBP\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"TBB\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"MIA\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"PHI\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"NYJ\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"LAC\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"NYJ\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"PHI\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"NYG\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"FA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"87\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"CHI\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"NYJ\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"FA\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"JAC\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"NEP\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"MIA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"IND\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"PHI\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"FA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"FA\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"MIN\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"FA\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"CIN\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"CB\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"S\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"NYJ\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"WR\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"MIA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"LVR\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"48\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"CHI\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DE\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"FA\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"BUF\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DE\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"HOU\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"MIA\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"DET\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DE\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"GBP\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"NOS\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"DET\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"MIA\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"KCC\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"RB\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"NOS\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"FA\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"FA\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"CLE\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"PIT\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"MIN\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"FA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, P.J.\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"CAR\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"LVR\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DE\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"ARI\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"FA\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"FA\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"ATL\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"FA\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"CLE\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"FA\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"FA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"NYJ\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"NYJ\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"S\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"45\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"GBP\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"FA\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"DET\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"14\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"BUF\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"CLE\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"CHI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"LB\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"TEN\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"MIA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"PIT\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"NYJ\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"PHI\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"WAS\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"DET\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"LAR\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"MIA\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"SFO\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"FA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"BUF\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"LVR\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"BUF\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"WAS\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"CLE\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"BAL\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"WAS\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"FA\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"757573200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"ATL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"LVR\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"LVR\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"36\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"JAC\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"LVR\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"97\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"KCC\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"TBB\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"LVR\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"CLE\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"47\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"CB\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"NYG\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"DEN\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"LVR\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"CB\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SFO\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"37\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"DEN\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"CIN\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"CLE\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"DET\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"JAC\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"LB\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"CB\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"34\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"WAS\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"TE\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"ARI\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"FA\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DT\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"PHI\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"49\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"NYJ\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"HOU\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"FA\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"ATL\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"HOU\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"SFO\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"CAR\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"birthdate\":\"698907600\",\"draft_team\":\"FA\",\"stats_id\":\"30711\",\"position\":\"PN\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"11829\",\"weight\":\"194\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"id\":\"13848\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"FA\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"6\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"ATL\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"TEN\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"BUF\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"JAC\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"WAS\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"CAR\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"BUF\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"TEN\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"FA\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"NYJ\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"CIN\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"PHI\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13507\",\"stats_id\":\"31314\",\"position\":\"CB\",\"stats_global_id\":\"822378\",\"weight\":\"189\",\"id\":\"13928\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Nichols, Deatrick\",\"college\":\"South Florida\",\"rotowire_id\":\"12758\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"team\":\"NOS\",\"cbs_id\":\"2926507\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"KCC\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"MIA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"NOS\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"CHI\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"NYG\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"FA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"TEN\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"MIA\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DE\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"CLE\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"NYG\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"BUF\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"DET\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"DAL\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"LVR\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"GBP\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"FA\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"HOU\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"40\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"23\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"CIN\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"NYJ\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"CAR\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"38\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"DET\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"GBP\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"FA\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"ARI\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"LAR\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"CIN\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"WAS\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"NOS\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"PIT\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"MIA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"89\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"LVR\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"MIN\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"birthdate\":\"873608400\",\"draft_team\":\"FA\",\"stats_id\":\"32469\",\"position\":\"WR\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"stats_global_id\":\"866112\",\"height\":\"72\",\"rotowire_id\":\"13877\",\"jersey\":\"8\",\"weight\":\"205\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"id\":\"14131\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"FA\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"ARI\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"FA\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"WAS\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"stats_id\":\"31858\",\"position\":\"DE\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"LVR\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"DAL\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"97\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"PHI\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"stats_id\":\"31835\",\"position\":\"DE\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"stats_id\":\"31903\",\"position\":\"DE\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"GBP\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"BAL\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"FA\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"TEN\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"NYG\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"stats_id\":\"31940\",\"position\":\"S\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"LVR\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"LVR\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"draft_team\":\"FA\",\"stats_id\":\"32368\",\"position\":\"RB\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"stats_global_id\":\"868331\",\"height\":\"72\",\"rotowire_id\":\"13549\",\"jersey\":\"30\",\"weight\":\"205\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"id\":\"14192\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"birthdate\":\"674283600\",\"draft_team\":\"FA\",\"stats_id\":\"31822\",\"position\":\"RB\",\"name\":\"Wade, Christian\",\"stats_global_id\":\"1164428\",\"height\":\"67\",\"rotowire_id\":\"13930\",\"jersey\":\"45\",\"weight\":\"185\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"id\":\"14194\",\"team\":\"BUF\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"draft_team\":\"GBP\",\"draft_pick\":\"21\",\"position\":\"S\",\"name\":\"Savage, Darnell\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13810\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"id\":\"14197\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"13514\",\"height\":\"75\",\"jersey\":\"79\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"LVR\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"LVR\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"LVR\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"NYG\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"TBB\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"BUF\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"DEN\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"DET\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"stats_id\":\"31991\",\"position\":\"DT\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"2\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CLE\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"SEA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"NOS\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYG\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"DET\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"DEN\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"CHI\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"IND\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"PHI\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"PIT\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"SEA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"JAC\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"stats_id\":\"32074\",\"position\":\"DT\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"MIA\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"TBB\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"NOS\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"IND\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"1\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"LVR\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"SEA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"PIT\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"FA\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"FA\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"DET\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"birthdate\":\"787208400\",\"draft_team\":\"FA\",\"stats_id\":\"31831\",\"position\":\"PK\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"stats_global_id\":\"744596\",\"height\":\"72\",\"rotowire_id\":\"13943\",\"weight\":\"189\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"id\":\"14335\",\"team\":\"TBB\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"DAL\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"birthdate\":\"816325200\",\"draft_team\":\"FA\",\"stats_id\":\"32238\",\"position\":\"RB\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"stats_global_id\":\"836057\",\"height\":\"72\",\"rotowire_id\":\"14082\",\"jersey\":\"23\",\"weight\":\"226\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"id\":\"14338\",\"team\":\"NYG\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"birthdate\":\"755067600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"12121\",\"jersey\":\"13\",\"weight\":\"178\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"id\":\"14339\",\"team\":\"TBB\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"draft_team\":\"FA\",\"stats_id\":\"32456\",\"position\":\"TE\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"stats_global_id\":\"875649\",\"height\":\"80\",\"rotowire_id\":\"13602\",\"jersey\":\"46\",\"weight\":\"240\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"id\":\"14341\",\"team\":\"LAC\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"draft_team\":\"FA\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"CIN\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"CAR\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"birthdate\":\"789022800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"stats_global_id\":\"744162\",\"height\":\"72\",\"rotowire_id\":\"12734\",\"jersey\":\"46\",\"weight\":\"230\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"id\":\"14350\",\"team\":\"DAL\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"MIN\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"birthdate\":\"770101200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"stats_global_id\":\"746191\",\"height\":\"74\",\"rotowire_id\":\"12539\",\"jersey\":\"15\",\"weight\":\"200\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"id\":\"14365\",\"team\":\"LAC\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"82\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"CIN\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"birthdate\":\"822459600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"stats_global_id\":\"832993\",\"height\":\"76\",\"rotowire_id\":\"13237\",\"jersey\":\"76\",\"weight\":\"295\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"id\":\"14377\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32220\",\"position\":\"LB\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"stats_global_id\":\"821593\",\"height\":\"74\",\"rotowire_id\":\"13907\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"id\":\"14384\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"stats_global_id\":\"699216\",\"height\":\"70\",\"rotowire_id\":\"11374\",\"jersey\":\"42\",\"weight\":\"200\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"id\":\"14394\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"birthdate\":\"818917200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820730\",\"height\":\"73\",\"rotowire_id\":\"13342\",\"jersey\":\"38\",\"weight\":\"210\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"id\":\"14398\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"FA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"LVR\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"birthdate\":\"811314000\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"stats_global_id\":\"820764\",\"height\":\"74\",\"rotowire_id\":\"13187\",\"jersey\":\"45\",\"weight\":\"255\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"id\":\"14421\",\"team\":\"MIA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"birthdate\":\"841294800\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"stats_global_id\":\"837722\",\"height\":\"71\",\"rotowire_id\":\"12827\",\"jersey\":\"39\",\"weight\":\"200\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"id\":\"14434\",\"team\":\"WAS\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"college\":\"Louisville\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"JAC\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"FA\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"786690000\",\"draft_team\":\"FA\",\"stats_id\":\"32559\",\"position\":\"RB\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"stats_global_id\":\"835777\",\"height\":\"69\",\"rotowire_id\":\"14237\",\"jersey\":\"46\",\"weight\":\"179\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"id\":\"14465\",\"team\":\"MIN\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"birthdate\":\"840862800\",\"draft_team\":\"FA\",\"stats_id\":\"32556\",\"position\":\"WR\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"stats_global_id\":\"838301\",\"height\":\"75\",\"rotowire_id\":\"14236\",\"jersey\":\"81\",\"weight\":\"205\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"id\":\"14481\",\"team\":\"DAL\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"birthdate\":\"848206800\",\"draft_team\":\"FA\",\"stats_id\":\"32283\",\"position\":\"WR\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"stats_global_id\":\"1063397\",\"height\":\"73\",\"rotowire_id\":\"14129\",\"jersey\":\"83\",\"weight\":\"201\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"id\":\"14486\",\"team\":\"CLE\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"birthdate\":\"850366800\",\"draft_team\":\"FA\",\"stats_id\":\"32273\",\"position\":\"TE\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"stats_global_id\":\"881697\",\"height\":\"76\",\"rotowire_id\":\"14131\",\"jersey\":\"89\",\"weight\":\"240\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"id\":\"14488\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"birthdate\":\"867992400\",\"draft_team\":\"FA\",\"stats_id\":\"32277\",\"position\":\"PN\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"stats_global_id\":\"891880\",\"height\":\"73\",\"rotowire_id\":\"14147\",\"jersey\":\"7\",\"weight\":\"207\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"id\":\"14489\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"809586000\",\"draft_team\":\"FA\",\"stats_id\":\"32205\",\"position\":\"LB\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"stats_global_id\":\"821248\",\"height\":\"75\",\"rotowire_id\":\"14068\",\"jersey\":\"57\",\"weight\":\"245\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"id\":\"14495\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"birthdate\":\"853390800\",\"draft_team\":\"FA\",\"stats_id\":\"32189\",\"position\":\"WR\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"stats_global_id\":\"1165782\",\"height\":\"72\",\"rotowire_id\":\"13919\",\"jersey\":\"2\",\"weight\":\"180\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"id\":\"14499\",\"team\":\"DEN\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"819262800\",\"draft_team\":\"FA\",\"stats_id\":\"32266\",\"position\":\"LB\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820700\",\"height\":\"72\",\"rotowire_id\":\"14103\",\"jersey\":\"40\",\"weight\":\"228\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"id\":\"14509\",\"team\":\"GBP\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"birthdate\":\"813992400\",\"draft_team\":\"FA\",\"stats_id\":\"32152\",\"position\":\"QB\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"stats_global_id\":\"945086\",\"height\":\"76\",\"rotowire_id\":\"14040\",\"jersey\":\"3\",\"weight\":\"221\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"id\":\"14510\",\"team\":\"ARI\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2019\",\"birthdate\":\"900738000\",\"draft_team\":\"FA\",\"stats_id\":\"32623\",\"position\":\"S\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"stats_global_id\":\"910649\",\"height\":\"72\",\"rotowire_id\":\"14330\",\"jersey\":\"38\",\"weight\":\"195\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"id\":\"14518\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"birthdate\":\"845355600\",\"draft_team\":\"FA\",\"stats_id\":\"32151\",\"position\":\"LB\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"stats_global_id\":\"923359\",\"height\":\"75\",\"rotowire_id\":\"14257\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"id\":\"14519\",\"team\":\"CAR\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"birthdate\":\"867387600\",\"draft_team\":\"FA\",\"stats_id\":\"32509\",\"position\":\"DT\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"stats_global_id\":\"867748\",\"height\":\"75\",\"rotowire_id\":\"13864\",\"jersey\":\"67\",\"weight\":\"305\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"id\":\"14531\",\"team\":\"PHI\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"birthdate\":\"803883600\",\"draft_team\":\"FA\",\"stats_id\":\"32547\",\"position\":\"WR\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"stats_global_id\":\"1166990\",\"height\":\"74\",\"rotowire_id\":\"13999\",\"jersey\":\"89\",\"weight\":\"213\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"id\":\"14545\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"birthdate\":\"822718800\",\"draft_team\":\"FA\",\"stats_id\":\"32137\",\"position\":\"WR\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"stats_global_id\":\"828656\",\"height\":\"70\",\"rotowire_id\":\"14012\",\"jersey\":\"14\",\"weight\":\"180\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"id\":\"14549\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"birthdate\":\"836197200\",\"draft_team\":\"FA\",\"stats_id\":\"32140\",\"position\":\"RB\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"835845\",\"height\":\"72\",\"rotowire_id\":\"13998\",\"jersey\":\"48\",\"weight\":\"233\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"id\":\"14552\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"birthdate\":\"848811600\",\"draft_team\":\"FA\",\"stats_id\":\"32143\",\"position\":\"WR\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"stats_global_id\":\"1050926\",\"height\":\"73\",\"rotowire_id\":\"14049\",\"jersey\":\"85\",\"weight\":\"166\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"id\":\"14554\",\"team\":\"MIN\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"birthdate\":\"848984400\",\"draft_team\":\"FA\",\"stats_id\":\"32612\",\"position\":\"WR\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"stats_global_id\":\"1168410\",\"height\":\"72\",\"rotowire_id\":\"14318\",\"jersey\":\"9\",\"weight\":\"190\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"id\":\"14555\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"birthdate\":\"881211600\",\"draft_team\":\"FA\",\"stats_id\":\"32398\",\"position\":\"WR\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"stats_global_id\":\"1166545\",\"height\":\"66\",\"rotowire_id\":\"14191\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"id\":\"14558\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"birthdate\":\"855378000\",\"draft_team\":\"FA\",\"stats_id\":\"32492\",\"position\":\"LB\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"stats_global_id\":\"880029\",\"height\":\"77\",\"rotowire_id\":\"13859\",\"jersey\":\"58\",\"weight\":\"260\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"id\":\"14559\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"stats_id\":\"32243\",\"position\":\"WR\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"stats_global_id\":\"838670\",\"height\":\"72\",\"rotowire_id\":\"13815\",\"jersey\":\"80\",\"weight\":\"191\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"id\":\"14560\",\"team\":\"CHI\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"82\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"805698000\",\"draft_team\":\"FA\",\"stats_id\":\"32548\",\"position\":\"PN\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"stats_global_id\":\"839067\",\"height\":\"75\",\"rotowire_id\":\"14265\",\"jersey\":\"6\",\"weight\":\"219\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"id\":\"14568\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"852181200\",\"draft_team\":\"FA\",\"stats_id\":\"32589\",\"position\":\"S\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"stats_global_id\":\"865648\",\"height\":\"71\",\"rotowire_id\":\"14297\",\"jersey\":\"32\",\"weight\":\"195\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"id\":\"14579\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"birthdate\":\"832568400\",\"draft_team\":\"FA\",\"stats_id\":\"32222\",\"position\":\"LB\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"stats_global_id\":\"828111\",\"height\":\"74\",\"rotowire_id\":\"14081\",\"jersey\":\"54\",\"weight\":\"240\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"id\":\"14584\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"birthdate\":\"870670800\",\"draft_team\":\"FA\",\"stats_id\":\"32318\",\"position\":\"LB\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"866464\",\"height\":\"74\",\"rotowire_id\":\"13829\",\"jersey\":\"46\",\"weight\":\"228\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"id\":\"14590\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"birthdate\":\"830408400\",\"draft_team\":\"FA\",\"stats_id\":\"32364\",\"position\":\"TE\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"stats_global_id\":\"832213\",\"height\":\"75\",\"rotowire_id\":\"14184\",\"jersey\":\"40\",\"weight\":\"225\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"id\":\"14591\",\"team\":\"KCC\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"birthdate\":\"869634000\",\"draft_team\":\"FA\",\"stats_id\":\"32123\",\"position\":\"WR\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"stats_global_id\":\"883976\",\"height\":\"68\",\"rotowire_id\":\"13833\",\"jersey\":\"17\",\"weight\":\"190\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"id\":\"14592\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32461\",\"position\":\"DT\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"835485\",\"height\":\"76\",\"rotowire_id\":\"14213\",\"jersey\":\"62\",\"weight\":\"285\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"id\":\"14595\",\"team\":\"DET\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"birthdate\":\"829112400\",\"draft_team\":\"FA\",\"stats_id\":\"32384\",\"position\":\"PK\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"stats_global_id\":\"836963\",\"height\":\"71\",\"rotowire_id\":\"14172\",\"jersey\":\"4\",\"weight\":\"213\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"id\":\"14600\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"birthdate\":\"808635600\",\"draft_team\":\"FA\",\"stats_id\":\"32439\",\"position\":\"RB\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"stats_global_id\":\"835694\",\"height\":\"72\",\"rotowire_id\":\"13913\",\"jersey\":\"42\",\"weight\":\"205\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"id\":\"14612\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"birthdate\":\"859784400\",\"draft_team\":\"FA\",\"stats_id\":\"32187\",\"position\":\"WR\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"stats_global_id\":\"877596\",\"height\":\"70\",\"rotowire_id\":\"14055\",\"jersey\":\"15\",\"weight\":\"190\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"id\":\"14613\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"birthdate\":\"829285200\",\"draft_team\":\"FA\",\"stats_id\":\"32581\",\"position\":\"QB\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"stats_global_id\":\"837040\",\"height\":\"73\",\"rotowire_id\":\"13566\",\"jersey\":\"6\",\"weight\":\"210\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"id\":\"14618\",\"team\":\"PIT\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"881730000\",\"draft_team\":\"FA\",\"stats_id\":\"32642\",\"position\":\"QB\",\"name\":\"Ta'amu, Jordan\",\"college\":\"Mississippi\",\"stats_global_id\":\"974470\",\"height\":\"75\",\"rotowire_id\":\"13629\",\"jersey\":\"6\",\"weight\":\"221\",\"sportsdata_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"id\":\"14622\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"817448400\",\"draft_team\":\"FA\",\"stats_id\":\"32386\",\"position\":\"PN\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"stats_global_id\":\"866061\",\"height\":\"76\",\"rotowire_id\":\"14171\",\"jersey\":\"6\",\"weight\":\"220\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"id\":\"14630\",\"team\":\"LVR\"},{\"draft_year\":\"2019\",\"birthdate\":\"857192400\",\"draft_team\":\"FA\",\"stats_id\":\"32321\",\"position\":\"DT\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"stats_global_id\":\"883319\",\"height\":\"73\",\"rotowire_id\":\"13519\",\"jersey\":\"60\",\"weight\":\"285\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"id\":\"14652\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"birthdate\":\"827211600\",\"draft_team\":\"FA\",\"stats_id\":\"32425\",\"position\":\"DT\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"stats_global_id\":\"834396\",\"height\":\"73\",\"rotowire_id\":\"14204\",\"jersey\":\"79\",\"weight\":\"299\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"id\":\"14653\",\"team\":\"TEN\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"stats_id\":\"32295\",\"position\":\"TE\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"stats_global_id\":\"884045\",\"height\":\"76\",\"rotowire_id\":\"14094\",\"jersey\":\"86\",\"weight\":\"245\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"id\":\"14654\",\"team\":\"WAS\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32241\",\"position\":\"LB\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"881829\",\"height\":\"73\",\"rotowire_id\":\"13487\",\"jersey\":\"48\",\"weight\":\"235\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"id\":\"14660\",\"team\":\"NYG\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"38\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"LVR\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"27\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"95\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"LAR\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Wiltz, Jomal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"74\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"birthdate\":\"873349200\",\"draft_team\":\"FA\",\"stats_id\":\"32155\",\"position\":\"DT\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14044\",\"jersey\":\"72\",\"weight\":\"320\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"id\":\"14677\",\"team\":\"ARI\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"79\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"832395600\",\"draft_team\":\"FA\",\"stats_id\":\"32304\",\"position\":\"LB\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13539\",\"jersey\":\"50\",\"weight\":\"240\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"id\":\"14682\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"ARI\"},{\"draft_year\":\"2019\",\"birthdate\":\"863413200\",\"draft_team\":\"FA\",\"stats_id\":\"32552\",\"position\":\"S\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14267\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"id\":\"14702\",\"team\":\"LAC\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"71\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"birthdate\":\"829026000\",\"draft_team\":\"FA\",\"stats_id\":\"32417\",\"position\":\"PK\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14254\",\"jersey\":\"7\",\"weight\":\"190\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"id\":\"14717\",\"team\":\"IND\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"47\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"DEN\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"PHI\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32671\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14777\",\"draft_team\":\"CIN\",\"birthdate\":\"850194000\",\"name\":\"Burrow, Joe\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"14442\",\"height\":\"76\",\"twitter_username\":\"Joe_Burrow10\",\"sportsdata_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"team\":\"CIN\",\"cbs_id\":\"2179798\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32675\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14778\",\"draft_team\":\"MIA\",\"birthdate\":\"888814800\",\"name\":\"Tagovailoa, Tua\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"14465\",\"height\":\"73\",\"twitter_username\":\"Tuaamann\",\"sportsdata_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"team\":\"MIA\",\"cbs_id\":\"2741209\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32676\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"237\",\"id\":\"14779\",\"draft_team\":\"LAC\",\"birthdate\":\"889506000\",\"name\":\"Herbert, Justin\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"rotowire_id\":\"14446\",\"height\":\"78\",\"twitter_username\":\"Justin10Herbert\",\"sportsdata_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"team\":\"LAC\",\"cbs_id\":\"2221960\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32792\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14780\",\"draft_team\":\"IND\",\"birthdate\":\"879742800\",\"name\":\"Eason, Jacob\",\"draft_pick\":\"16\",\"college\":\"Washington\",\"rotowire_id\":\"14401\",\"height\":\"78\",\"twitter_username\":\"skinnyqb10\",\"sportsdata_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"team\":\"IND\",\"cbs_id\":\"2240210\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32837\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"222\",\"id\":\"14781\",\"draft_team\":\"BUF\",\"birthdate\":\"901774800\",\"name\":\"Fromm, Jake\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"rotowire_id\":\"14486\",\"height\":\"74\",\"twitter_username\":\"FrommJake\",\"sportsdata_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"team\":\"BUF\",\"cbs_id\":\"2803326\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32696\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14782\",\"draft_team\":\"GBP\",\"birthdate\":\"909982800\",\"name\":\"Love, Jordan\",\"draft_pick\":\"26\",\"college\":\"Utah State\",\"rotowire_id\":\"14371\",\"height\":\"76\",\"twitter_username\":\"jordan3love\",\"sportsdata_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"team\":\"GBP\",\"cbs_id\":\"2239997\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32723\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14783\",\"draft_team\":\"PHI\",\"birthdate\":\"902466000\",\"name\":\"Hurts, Jalen\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14416\",\"height\":\"74\",\"twitter_username\":\"JalenHurts\",\"sportsdata_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"team\":\"PHI\",\"cbs_id\":\"2240246\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33207\",\"position\":\"QB\",\"name\":\"Montez, Steven\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14393\",\"id\":\"14784\",\"team\":\"WAS\",\"cbs_id\":\"2185536\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32914\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"14785\",\"draft_team\":\"MIN\",\"birthdate\":\"872571600\",\"name\":\"Stanley, Nate\",\"draft_pick\":\"30\",\"college\":\"Iowa\",\"rotowire_id\":\"14566\",\"height\":\"76\",\"twitter_username\":\"Njstan4\",\"sportsdata_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"team\":\"MIN\",\"cbs_id\":\"2251110\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33246\",\"position\":\"QB\",\"name\":\"Patterson, Shea\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14469\",\"id\":\"14786\",\"team\":\"FA\",\"cbs_id\":\"2221866\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Gordon, Anthony\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14431\",\"id\":\"14787\",\"team\":\"SEA\",\"cbs_id\":\"2251387\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33015\",\"position\":\"QB\",\"name\":\"Lewerke, Brian\",\"college\":\"Michigan State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14530\",\"id\":\"14788\",\"team\":\"NEP\",\"cbs_id\":\"2186429\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32993\",\"position\":\"QB\",\"name\":\"Huntley, Tyler\",\"college\":\"Utah\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14563\",\"sportsdata_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"id\":\"14789\",\"team\":\"BAL\",\"cbs_id\":\"3159137\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32795\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14790\",\"draft_team\":\"NYJ\",\"birthdate\":\"857106000\",\"name\":\"Morgan, James\",\"draft_pick\":\"19\",\"college\":\"Florida International\",\"rotowire_id\":\"14531\",\"height\":\"76\",\"twitter_username\":\"jmoneyyy12\",\"sportsdata_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"team\":\"NYJ\",\"cbs_id\":\"2180077\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Fine, Mason\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14786\",\"id\":\"14791\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Perkins, Bryce\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14429\",\"id\":\"14792\",\"team\":\"LAR\",\"cbs_id\":\"3159114\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32859\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"14793\",\"draft_team\":\"JAC\",\"birthdate\":\"829198800\",\"name\":\"Luton, Jake\",\"draft_pick\":\"10\",\"college\":\"Oregon State\",\"rotowire_id\":\"14562\",\"height\":\"78\",\"twitter_username\":\"jakeluton6\",\"sportsdata_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"team\":\"JAC\",\"cbs_id\":\"2132133\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32894\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14794\",\"draft_team\":\"TEN\",\"birthdate\":\"895640400\",\"name\":\"McDonald, Cole\",\"draft_pick\":\"10\",\"college\":\"Hawaii\",\"rotowire_id\":\"14493\",\"height\":\"76\",\"twitter_username\":\"ColeHunter520\",\"sportsdata_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"team\":\"TEN\",\"cbs_id\":\"2257005\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Bryant, Kelly\",\"college\":\"Missouri\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14528\",\"id\":\"14795\",\"team\":\"FA\",\"cbs_id\":\"2179210\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32928\",\"position\":\"QB\",\"name\":\"Neal, Riley\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14859\",\"id\":\"14796\",\"team\":\"DEN\",\"cbs_id\":\"3159056\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32705\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14797\",\"draft_team\":\"DET\",\"birthdate\":\"916290000\",\"name\":\"Swift, D'Andre\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"14394\",\"height\":\"70\",\"twitter_username\":\"DAndreSwift\",\"sportsdata_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"team\":\"DET\",\"cbs_id\":\"2871710\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32756\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14798\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Moss, Zack\",\"draft_pick\":\"22\",\"college\":\"Utah\",\"rotowire_id\":\"14564\",\"height\":\"70\",\"twitter_username\":\"PresMoss2\",\"sportsdata_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"team\":\"BUF\",\"cbs_id\":\"2240516\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32722\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14799\",\"draft_team\":\"LAR\",\"birthdate\":\"930027600\",\"name\":\"Akers, Cam\",\"draft_pick\":\"20\",\"college\":\"Florida State\",\"rotowire_id\":\"14383\",\"height\":\"71\",\"twitter_username\":\"thereal_cam3\",\"sportsdata_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"team\":\"LAR\",\"cbs_id\":\"2804034\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32725\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14800\",\"draft_team\":\"BAL\",\"birthdate\":\"913870800\",\"name\":\"Dobbins, J.K.\",\"draft_pick\":\"23\",\"college\":\"Ohio State\",\"rotowire_id\":\"14418\",\"height\":\"70\",\"twitter_username\":\"jkdobbins22\",\"sportsdata_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"team\":\"BAL\",\"cbs_id\":\"2804420\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32892\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14801\",\"draft_team\":\"ARI\",\"birthdate\":\"945061200\",\"name\":\"Benjamin, Eno\",\"draft_pick\":\"8\",\"college\":\"Arizona State\",\"rotowire_id\":\"14372\",\"height\":\"70\",\"twitter_username\":\"eno_benjamin5\",\"sportsdata_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"team\":\"ARI\",\"cbs_id\":\"2760832\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32711\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14802\",\"draft_team\":\"IND\",\"birthdate\":\"916722000\",\"name\":\"Taylor, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14455\",\"height\":\"71\",\"twitter_username\":\"JayT23\",\"sportsdata_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"team\":\"IND\",\"cbs_id\":\"2866395\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32702\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14803\",\"draft_team\":\"KCC\",\"birthdate\":\"923806800\",\"name\":\"Edwards-Helaire, Clyde\",\"draft_pick\":\"32\",\"college\":\"LSU\",\"rotowire_id\":\"14514\",\"height\":\"68\",\"sportsdata_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"team\":\"KCC\",\"cbs_id\":\"2804554\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32794\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14804\",\"draft_team\":\"PIT\",\"name\":\"McFarland, Anthony\",\"draft_pick\":\"18\",\"college\":\"Maryland\",\"rotowire_id\":\"14357\",\"height\":\"69\",\"sportsdata_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"team\":\"PIT\",\"cbs_id\":\"2804293\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32732\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"espn_id\":\"4239934\",\"weight\":\"250\",\"id\":\"14805\",\"draft_team\":\"GBP\",\"birthdate\":\"894085200\",\"name\":\"Dillon, AJ\",\"draft_pick\":\"30\",\"college\":\"Boston College\",\"rotowire_id\":\"14370\",\"height\":\"73\",\"twitter_username\":\"ajdillon7\",\"sportsdata_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"team\":\"GBP\",\"cbs_id\":\"2867083\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32790\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14806\",\"draft_team\":\"NYJ\",\"birthdate\":\"886136400\",\"name\":\"Perine, Lamical\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"14427\",\"height\":\"71\",\"twitter_username\":\"lp_deucedeuce\",\"sportsdata_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"team\":\"NYJ\",\"cbs_id\":\"2248610\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32782\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14807\",\"draft_team\":\"LAC\",\"birthdate\":\"880002000\",\"name\":\"Kelley, Joshua\",\"draft_pick\":\"6\",\"college\":\"UCLA\",\"rotowire_id\":\"14494\",\"height\":\"71\",\"twitter_username\":\"SmoothplayJK\",\"sportsdata_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"team\":\"LAC\",\"cbs_id\":\"2183195\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32763\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14808\",\"draft_team\":\"TEN\",\"birthdate\":\"899960400\",\"name\":\"Evans, Darrynton\",\"draft_pick\":\"29\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14400\",\"height\":\"71\",\"twitter_username\":\"ItzLiveee\",\"sportsdata_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"team\":\"TEN\",\"cbs_id\":\"2240806\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33153\",\"position\":\"RB\",\"name\":\"Smith, Rodney\",\"college\":\"Minnesota\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14435\",\"id\":\"14809\",\"team\":\"CAR\",\"cbs_id\":\"2165586\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32746\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14810\",\"draft_team\":\"TBB\",\"birthdate\":\"862722000\",\"name\":\"Vaughn, Ke'Shawn\",\"draft_pick\":\"12\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"14557\",\"height\":\"70\",\"twitter_username\":\"SneakVaughn\",\"sportsdata_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"team\":\"TBB\",\"cbs_id\":\"2179704\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Ahmed, Salvon\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14453\",\"id\":\"14811\",\"team\":\"SFO\",\"cbs_id\":\"2815163\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33098\",\"position\":\"RB\",\"name\":\"Anderson, Darius\",\"college\":\"TCU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14565\",\"id\":\"14812\",\"team\":\"DAL\",\"cbs_id\":\"2240319\"},{\"draft_year\":\"2020\",\"birthdate\":\"902638800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33138\",\"position\":\"RB\",\"name\":\"Robinson, James\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14660\",\"weight\":\"220\",\"sportsdata_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"id\":\"14813\",\"team\":\"JAC\",\"cbs_id\":\"2257036\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33307\",\"position\":\"RB\",\"name\":\"Herrien, Brian\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14438\",\"id\":\"14814\",\"team\":\"CLE\",\"cbs_id\":\"2248619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32814\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14815\",\"draft_team\":\"SEA\",\"birthdate\":\"905922000\",\"name\":\"Dallas, DeeJay\",\"draft_pick\":\"38\",\"college\":\"Miami\",\"rotowire_id\":\"14410\",\"height\":\"70\",\"twitter_username\":\"DallasDeejay\",\"sportsdata_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"team\":\"SEA\",\"cbs_id\":\"2804094\"},{\"draft_year\":\"2020\",\"birthdate\":\"910846800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32972\",\"position\":\"RB\",\"name\":\"Warren, Michael\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14496\",\"weight\":\"224\",\"sportsdata_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"id\":\"14816\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Taylor, Patrick\",\"college\":\"Memphis\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14573\",\"id\":\"14817\",\"team\":\"GBP\",\"cbs_id\":\"2256736\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Jones, Xavier\",\"college\":\"SMU\",\"stats_global_id\":\"0\",\"id\":\"14818\",\"team\":\"LAR\",\"cbs_id\":\"3159182\"},{\"draft_year\":\"2020\",\"birthdate\":\"883544400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33126\",\"position\":\"RB\",\"name\":\"Feaster, Tavien\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14592\",\"weight\":\"215\",\"sportsdata_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"id\":\"14819\",\"team\":\"JAC\",\"cbs_id\":\"2239519\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33037\",\"position\":\"RB\",\"name\":\"Leake, Javon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14361\",\"id\":\"14820\",\"team\":\"NYG\",\"cbs_id\":\"2804292\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Hasty, JaMycal\",\"college\":\"Baylor\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14392\",\"id\":\"14821\",\"team\":\"SFO\",\"cbs_id\":\"2189504\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Corbin, Reggie\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14440\",\"id\":\"14822\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33100\",\"position\":\"RB\",\"name\":\"Dowdle, Rico\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14657\",\"id\":\"14823\",\"team\":\"DAL\",\"cbs_id\":\"2252798\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33161\",\"position\":\"RB\",\"name\":\"Phillips, Scottie\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14659\",\"id\":\"14824\",\"team\":\"HOU\",\"cbs_id\":\"2962972\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Conkrite, Jordan\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"id\":\"14825\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Pierce, Artavis\",\"college\":\"Oregon State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14881\",\"id\":\"14826\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33028\",\"position\":\"RB\",\"name\":\"Taylor, J.J.\",\"college\":\"Arizona\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14459\",\"id\":\"14827\",\"team\":\"NEP\",\"cbs_id\":\"2252786\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33114\",\"position\":\"RB\",\"name\":\"Jones, Tony\",\"college\":\"Notre Dame\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14423\",\"weight\":\"224\",\"sportsdata_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"id\":\"14828\",\"team\":\"NOS\",\"cbs_id\":\"2260681\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33309\",\"position\":\"RB\",\"name\":\"LeMay, Benny\",\"college\":\"Charlotte\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14532\",\"id\":\"14829\",\"team\":\"CLE\",\"cbs_id\":\"2258154\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32926\",\"position\":\"RB\",\"name\":\"Bellamy, LaVante\",\"college\":\"Western Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14656\",\"id\":\"14830\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32966\",\"position\":\"RB\",\"name\":\"Killins Jr., Adrian\",\"college\":\"Central Florida\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14396\",\"id\":\"14831\",\"team\":\"PHI\",\"cbs_id\":\"3159156\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32687\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"189\",\"id\":\"14832\",\"draft_team\":\"DAL\",\"birthdate\":\"923547600\",\"name\":\"Lamb, CeeDee\",\"draft_pick\":\"17\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14411\",\"height\":\"74\",\"twitter_username\":\"_CeeDeeThree\",\"sportsdata_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"team\":\"DAL\",\"cbs_id\":\"2865251\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32685\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14833\",\"draft_team\":\"DEN\",\"birthdate\":\"924930000\",\"name\":\"Jeudy, Jerry\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"14458\",\"height\":\"73\",\"twitter_username\":\"jerryjeudy\",\"sportsdata_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"team\":\"DEN\",\"cbs_id\":\"2741201\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32682\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14834\",\"draft_team\":\"LVR\",\"birthdate\":\"917154000\",\"name\":\"Ruggs, Henry\",\"draft_pick\":\"12\",\"college\":\"Alabama\",\"rotowire_id\":\"14473\",\"height\":\"72\",\"twitter_username\":\"__RUGGS\",\"sportsdata_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32703\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14835\",\"draft_team\":\"CIN\",\"birthdate\":\"917499600\",\"name\":\"Higgins, Tee\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"14506\",\"height\":\"76\",\"twitter_username\":\"teehiggins5\",\"sportsdata_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"team\":\"CIN\",\"cbs_id\":\"2809208\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32692\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14836\",\"draft_team\":\"MIN\",\"birthdate\":\"929509200\",\"name\":\"Jefferson, Justin\",\"draft_pick\":\"22\",\"college\":\"LSU\",\"rotowire_id\":\"14509\",\"height\":\"75\",\"twitter_username\":\"JJettas2\",\"sportsdata_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"team\":\"MIN\",\"cbs_id\":\"2871343\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32716\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"14837\",\"draft_team\":\"DEN\",\"birthdate\":\"931410000\",\"name\":\"Hamler, KJ\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14462\",\"height\":\"69\",\"twitter_username\":\"Kj_hamler\",\"sportsdata_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"team\":\"DEN\",\"cbs_id\":\"2804432\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32712\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14838\",\"draft_team\":\"JAC\",\"birthdate\":\"907563600\",\"name\":\"Shenault, Laviska\",\"draft_pick\":\"10\",\"college\":\"Colorado\",\"rotowire_id\":\"14358\",\"height\":\"74\",\"twitter_username\":\"Viska2live\",\"sportsdata_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32691\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14839\",\"draft_team\":\"PHI\",\"birthdate\":\"915166800\",\"name\":\"Reagor, Jalen\",\"draft_pick\":\"21\",\"college\":\"TCU\",\"rotowire_id\":\"14421\",\"height\":\"71\",\"twitter_username\":\"jalenreagor\",\"sportsdata_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"team\":\"PHI\",\"cbs_id\":\"2803733\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32695\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"14840\",\"draft_team\":\"SFO\",\"birthdate\":\"890110800\",\"name\":\"Aiyuk, Brandon\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"rotowire_id\":\"14386\",\"height\":\"73\",\"twitter_username\":\"THE2ERA\",\"sportsdata_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"team\":\"SFO\",\"cbs_id\":\"2967489\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32719\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14841\",\"draft_team\":\"PIT\",\"birthdate\":\"899787600\",\"name\":\"Claypool, Chase\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14433\",\"height\":\"76\",\"twitter_username\":\"ChaseClaypool\",\"sportsdata_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"team\":\"PIT\",\"cbs_id\":\"2260676\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32704\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14842\",\"draft_team\":\"IND\",\"birthdate\":\"876027600\",\"name\":\"Pittman, Michael\",\"draft_pick\":\"2\",\"college\":\"USC\",\"rotowire_id\":\"14378\",\"height\":\"76\",\"twitter_username\":\"MikePitt_Jr\",\"sportsdata_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"team\":\"IND\",\"cbs_id\":\"2240188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32750\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14843\",\"draft_team\":\"LVR\",\"birthdate\":\"876805200\",\"name\":\"Bowden, Lynn\",\"draft_pick\":\"16\",\"college\":\"Kentucky\",\"rotowire_id\":\"14460\",\"height\":\"72\",\"twitter_username\":\"LynnBowden_1\",\"sportsdata_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"team\":\"LVR\",\"cbs_id\":\"2875380\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32751\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14844\",\"draft_team\":\"LVR\",\"birthdate\":\"910933200\",\"name\":\"Edwards, Bryan\",\"draft_pick\":\"17\",\"college\":\"South Carolina\",\"rotowire_id\":\"14577\",\"height\":\"75\",\"twitter_username\":\"B__ED89\",\"sportsdata_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"team\":\"LVR\",\"cbs_id\":\"2221840\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32798\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14845\",\"draft_team\":\"BUF\",\"birthdate\":\"922942800\",\"name\":\"Davis, Gabriel\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"rotowire_id\":\"14359\",\"height\":\"75\",\"twitter_username\":\"DavisGB1\",\"sportsdata_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"team\":\"BUF\",\"cbs_id\":\"2804813\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32729\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14846\",\"draft_team\":\"NYJ\",\"birthdate\":\"876459600\",\"name\":\"Mims, Denzel\",\"draft_pick\":\"27\",\"college\":\"Baylor\",\"rotowire_id\":\"14539\",\"height\":\"75\",\"twitter_username\":\"Zel5Zelly\",\"sportsdata_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"team\":\"NYJ\",\"cbs_id\":\"2253076\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32762\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14847\",\"draft_team\":\"BAL\",\"birthdate\":\"874040400\",\"name\":\"Duvernay, Devin\",\"draft_pick\":\"28\",\"college\":\"Texas\",\"rotowire_id\":\"14636\",\"height\":\"71\",\"twitter_username\":\"Dev_Duv5\",\"sportsdata_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"team\":\"BAL\",\"cbs_id\":\"2246849\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32871\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14848\",\"draft_team\":\"BAL\",\"birthdate\":\"843282000\",\"name\":\"Proche, James\",\"draft_pick\":\"22\",\"college\":\"SMU\",\"rotowire_id\":\"14415\",\"height\":\"72\",\"twitter_username\":\"jamesproche3\",\"sportsdata_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"team\":\"BAL\",\"cbs_id\":\"2180769\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32877\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14849\",\"draft_team\":\"BUF\",\"birthdate\":\"908946000\",\"name\":\"Hodgins, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Oregon State\",\"rotowire_id\":\"14356\",\"height\":\"76\",\"twitter_username\":\"IsaiahHodgins\",\"sportsdata_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"team\":\"BUF\",\"cbs_id\":\"2783899\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32836\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14850\",\"draft_team\":\"DET\",\"birthdate\":\"891406800\",\"name\":\"Cephus, Quintez\",\"draft_pick\":\"20\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14466\",\"height\":\"73\",\"twitter_username\":\"QoDeep_87\",\"sportsdata_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"team\":\"DET\",\"cbs_id\":\"2251870\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32890\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14851\",\"draft_team\":\"LAC\",\"birthdate\":\"874299600\",\"name\":\"Hill, K.J.\",\"draft_pick\":\"6\",\"college\":\"Ohio State\",\"rotowire_id\":\"14414\",\"height\":\"72\",\"twitter_username\":\"kayjayhill\",\"sportsdata_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"team\":\"LAC\",\"cbs_id\":\"2179813\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32736\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14852\",\"draft_team\":\"WAS\",\"name\":\"Gibson, Antonio\",\"draft_pick\":\"2\",\"college\":\"Memphis\",\"rotowire_id\":\"14639\",\"height\":\"74\",\"twitter_username\":\"antoniogibson14\",\"sportsdata_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"team\":\"WAS\",\"cbs_id\":\"2960976\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32835\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14853\",\"draft_team\":\"JAC\",\"birthdate\":\"874990800\",\"name\":\"Johnson, Collin\",\"draft_pick\":\"19\",\"college\":\"Texas\",\"rotowire_id\":\"14545\",\"height\":\"78\",\"twitter_username\":\"Call_In_Johnson\",\"sportsdata_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"team\":\"JAC\",\"cbs_id\":\"2240315\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Victor, Binjimen\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14529\",\"id\":\"14854\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33039\",\"position\":\"WR\",\"name\":\"Mack, Austin\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14546\",\"weight\":\"215\",\"sportsdata_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"id\":\"14855\",\"team\":\"NYG\",\"cbs_id\":\"2239784\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33027\",\"position\":\"WR\",\"name\":\"Davis, Quartney\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14461\",\"id\":\"14856\",\"team\":\"MIN\",\"cbs_id\":\"2249179\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32857\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14857\",\"draft_team\":\"CLE\",\"birthdate\":\"919400400\",\"name\":\"Peoples-Jones, Donovan\",\"draft_pick\":\"8\",\"college\":\"Michigan\",\"rotowire_id\":\"14457\",\"height\":\"74\",\"twitter_username\":\"dpeoplesjones\",\"sportsdata_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"team\":\"CLE\",\"cbs_id\":\"2819119\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32727\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14858\",\"draft_team\":\"LAR\",\"birthdate\":\"838357200\",\"name\":\"Jefferson, Van\",\"draft_pick\":\"25\",\"college\":\"Florida\",\"rotowire_id\":\"14430\",\"height\":\"74\",\"sportsdata_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"team\":\"LAR\",\"cbs_id\":\"2186342\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Jackson, Trishton\",\"college\":\"Syracuse\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14402\",\"id\":\"14859\",\"team\":\"LAR\",\"cbs_id\":\"2253371\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32887\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14860\",\"draft_team\":\"SFO\",\"birthdate\":\"868510800\",\"name\":\"Jennings, Jauan\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"14376\",\"height\":\"75\",\"sportsdata_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"team\":\"SFO\",\"cbs_id\":\"2180514\"},{\"draft_year\":\"2020\",\"birthdate\":\"842590800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33113\",\"position\":\"WR\",\"name\":\"Johnson, Juwan\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14630\",\"weight\":\"231\",\"sportsdata_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"id\":\"14861\",\"team\":\"NOS\",\"cbs_id\":\"2186637\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32821\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14862\",\"draft_team\":\"LAC\",\"birthdate\":\"883890000\",\"name\":\"Reed, Joe\",\"draft_pick\":\"5\",\"college\":\"Virginia\",\"rotowire_id\":\"14428\",\"height\":\"73\",\"twitter_username\":\"JoeBee_2\",\"sportsdata_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"team\":\"LAC\",\"cbs_id\":\"2251260\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32812\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14863\",\"draft_team\":\"WAS\",\"birthdate\":\"892270800\",\"name\":\"Gandy-Golden, Antonio\",\"draft_pick\":\"36\",\"college\":\"Liberty\",\"rotowire_id\":\"14568\",\"height\":\"76\",\"twitter_username\":\"gandygolden11\",\"sportsdata_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"team\":\"WAS\",\"cbs_id\":\"2250521\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32831\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14864\",\"draft_team\":\"TBB\",\"birthdate\":\"904021200\",\"name\":\"Johnson, Tyler\",\"draft_pick\":\"15\",\"college\":\"Minnesota\",\"rotowire_id\":\"14432\",\"height\":\"74\",\"twitter_username\":\"T_muhneyy10\",\"sportsdata_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"team\":\"TBB\",\"cbs_id\":\"1620002\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32884\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"14865\",\"draft_team\":\"SEA\",\"birthdate\":\"902206800\",\"name\":\"Swain, Freddie\",\"draft_pick\":\"35\",\"college\":\"Florida\",\"rotowire_id\":\"14644\",\"height\":\"72\",\"sportsdata_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"team\":\"SEA\",\"cbs_id\":\"2221836\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33022\",\"position\":\"WR\",\"name\":\"Thomas, Jeff\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14382\",\"id\":\"14866\",\"team\":\"NEP\",\"cbs_id\":\"2826768\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32713\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"258\",\"id\":\"14867\",\"draft_team\":\"CHI\",\"birthdate\":\"921042000\",\"name\":\"Kmet, Cole\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14436\",\"height\":\"78\",\"twitter_username\":\"ColeKmet\",\"sportsdata_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"team\":\"CHI\",\"cbs_id\":\"2868619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32806\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14868\",\"draft_team\":\"LAR\",\"birthdate\":\"859438800\",\"name\":\"Hopkins, Brycen\",\"draft_pick\":\"30\",\"college\":\"Purdue\",\"rotowire_id\":\"14586\",\"height\":\"77\",\"twitter_username\":\"Itsbhop89\",\"sportsdata_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"team\":\"LAR\",\"cbs_id\":\"2183906\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33208\",\"position\":\"TE\",\"name\":\"Moss, Thaddeus\",\"college\":\"LSU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14524\",\"id\":\"14869\",\"team\":\"WAS\",\"cbs_id\":\"2246946\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32775\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14870\",\"draft_team\":\"NOS\",\"birthdate\":\"855118800\",\"name\":\"Trautman, Adam\",\"draft_pick\":\"41\",\"college\":\"Dayton\",\"rotowire_id\":\"14541\",\"height\":\"78\",\"sportsdata_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"team\":\"NOS\",\"cbs_id\":\"2182228\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32803\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14871\",\"draft_team\":\"SEA\",\"birthdate\":\"915771600\",\"name\":\"Parkinson, Colby\",\"draft_pick\":\"27\",\"college\":\"Stanford\",\"rotowire_id\":\"14463\",\"height\":\"79\",\"sportsdata_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"team\":\"SEA\",\"cbs_id\":\"2867522\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33064\",\"position\":\"TE\",\"name\":\"Pinkney, Jared\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14632\",\"sportsdata_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"id\":\"14872\",\"team\":\"ATL\",\"cbs_id\":\"2180558\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32788\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14873\",\"draft_team\":\"DEN\",\"birthdate\":\"893480400\",\"name\":\"Okwuegbunam, Albert\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"rotowire_id\":\"14369\",\"height\":\"77\",\"twitter_username\":\"AOkwuegbunam\",\"sportsdata_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"team\":\"DEN\",\"cbs_id\":\"2245117\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Bryant, Hunter\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14364\",\"id\":\"14874\",\"team\":\"DET\",\"cbs_id\":\"2815166\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32785\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14875\",\"draft_team\":\"CLE\",\"birthdate\":\"893307600\",\"name\":\"Bryant, Harrison\",\"draft_pick\":\"9\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14576\",\"height\":\"77\",\"twitter_username\":\"hbryant17\",\"sportsdata_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"team\":\"CLE\",\"cbs_id\":\"2241240\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32764\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14876\",\"draft_team\":\"GBP\",\"birthdate\":\"855896400\",\"name\":\"Deguara, Josiah\",\"draft_pick\":\"30\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14629\",\"height\":\"75\",\"twitter_username\":\"JosiahD5\",\"sportsdata_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"team\":\"GBP\",\"cbs_id\":\"2181108\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32672\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14877\",\"draft_team\":\"WAS\",\"birthdate\":\"924066000\",\"name\":\"Young, Chase\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"14452\",\"height\":\"77\",\"twitter_username\":\"youngchase907\",\"sportsdata_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"team\":\"WAS\",\"cbs_id\":\"2829229\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32707\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"264\",\"id\":\"14878\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Gross-Matos, Yetur\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"rotowire_id\":\"14355\",\"height\":\"77\",\"twitter_username\":\"__lobo99\",\"sportsdata_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"team\":\"CAR\",\"cbs_id\":\"2868927\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32724\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14879\",\"draft_team\":\"BUF\",\"birthdate\":\"905835600\",\"name\":\"Epenesa, A.J.\",\"draft_pick\":\"22\",\"college\":\"Iowa\",\"rotowire_id\":\"14501\",\"height\":\"77\",\"twitter_username\":\"ajepenesa24\",\"sportsdata_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"team\":\"BUF\",\"cbs_id\":\"2865969\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32817\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14880\",\"draft_team\":\"CIN\",\"birthdate\":\"893739600\",\"name\":\"Kareem, Khalid\",\"draft_pick\":\"1\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14684\",\"height\":\"76\",\"twitter_username\":\"khalid_kareem53\",\"sportsdata_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"team\":\"CIN\",\"cbs_id\":\"2240621\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Coe, Nick\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14398\",\"id\":\"14881\",\"team\":\"NEP\",\"cbs_id\":\"2257893\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"rotoworld_id\":\"60119\",\"status\":\"R\",\"stats_id\":\"32760\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14882\",\"draft_team\":\"HOU\",\"birthdate\":\"864536400\",\"name\":\"Greenard, Jonathan\",\"draft_pick\":\"26\",\"college\":\"Florida\",\"rotowire_id\":\"14550\",\"height\":\"75\",\"twitter_username\":\"jongreenard7\",\"sportsdata_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"team\":\"HOU\",\"cbs_id\":\"2181166\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32717\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"279\",\"id\":\"14883\",\"draft_team\":\"ATL\",\"birthdate\":\"894862800\",\"name\":\"Davidson, Marlon\",\"draft_pick\":\"15\",\"college\":\"Auburn\",\"rotowire_id\":\"14540\",\"height\":\"75\",\"twitter_username\":\"marlondavidson7\",\"sportsdata_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"team\":\"ATL\",\"cbs_id\":\"2222006\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32824\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14884\",\"draft_team\":\"MIA\",\"birthdate\":\"842331600\",\"name\":\"Strowbridge, Jason\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"rotowire_id\":\"14730\",\"height\":\"77\",\"sportsdata_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"team\":\"MIA\",\"cbs_id\":\"2179351\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32749\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"14885\",\"draft_team\":\"NYJ\",\"name\":\"Zuniga, Jabari\",\"draft_pick\":\"15\",\"college\":\"Florida\",\"rotowire_id\":\"14734\",\"height\":\"76\",\"twitter_username\":\"JabariZuniga\",\"sportsdata_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"team\":\"NYJ\",\"cbs_id\":\"2180452\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14886\",\"draft_team\":\"DAL\",\"birthdate\":\"908600400\",\"name\":\"Anae, Bradlee\",\"draft_pick\":\"33\",\"college\":\"Utah\",\"rotowire_id\":\"14582\",\"height\":\"75\",\"sportsdata_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"team\":\"DAL\",\"cbs_id\":\"2240496\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32678\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14887\",\"draft_team\":\"ARI\",\"birthdate\":\"901429200\",\"name\":\"Simmons, Isaiah\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"14525\",\"height\":\"75\",\"twitter_username\":\"isaiahsimmons25\",\"sportsdata_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"team\":\"ARI\",\"cbs_id\":\"2239532\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32690\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14888\",\"draft_team\":\"JAC\",\"birthdate\":\"932878800\",\"name\":\"Chaisson, K'Lavon\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"14523\",\"height\":\"76\",\"twitter_username\":\"S4CKGURU\",\"sportsdata_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"team\":\"JAC\",\"cbs_id\":\"2804551\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32693\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"234\",\"id\":\"14889\",\"draft_team\":\"LAC\",\"birthdate\":\"911192400\",\"name\":\"Murray, Kenneth\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14434\",\"height\":\"75\",\"twitter_username\":\"KennethMurray\",\"sportsdata_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"team\":\"LAC\",\"cbs_id\":\"2804138\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32767\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14890\",\"draft_team\":\"CLE\",\"birthdate\":\"922942800\",\"name\":\"Phillips, Jacob\",\"draft_pick\":\"33\",\"college\":\"LSU\",\"rotowire_id\":\"14517\",\"height\":\"76\",\"twitter_username\":\"jacobphilly\",\"sportsdata_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"team\":\"CLE\",\"cbs_id\":\"2804564\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32768\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14891\",\"draft_team\":\"BAL\",\"birthdate\":\"889074000\",\"name\":\"Harrison, Malik\",\"draft_pick\":\"34\",\"college\":\"Ohio State\",\"rotowire_id\":\"14648\",\"height\":\"75\",\"sportsdata_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"team\":\"BAL\",\"cbs_id\":\"2260979\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32697\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14892\",\"draft_team\":\"SEA\",\"birthdate\":\"877410000\",\"name\":\"Brooks, Jordyn\",\"draft_pick\":\"27\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14739\",\"height\":\"73\",\"twitter_username\":\"JordynBrooks_\",\"sportsdata_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"team\":\"SEA\",\"cbs_id\":\"2252263\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32744\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14893\",\"draft_team\":\"NOS\",\"name\":\"Baun, Zack\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14374\",\"height\":\"75\",\"twitter_username\":\"zackbizzaun\",\"sportsdata_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"team\":\"NOS\",\"cbs_id\":\"2183919\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32757\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14894\",\"draft_team\":\"NEP\",\"birthdate\":\"862462800\",\"name\":\"Jennings, Anfernee\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"14742\",\"height\":\"75\",\"twitter_username\":\"anferneejenning\",\"sportsdata_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"team\":\"NEP\",\"cbs_id\":\"2186321\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Woodward, David\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14645\",\"id\":\"14895\",\"team\":\"FA\",\"cbs_id\":\"2258285\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32698\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14896\",\"draft_team\":\"BAL\",\"birthdate\":\"934520400\",\"name\":\"Queen, Patrick\",\"draft_pick\":\"28\",\"college\":\"LSU\",\"rotowire_id\":\"14508\",\"height\":\"73\",\"twitter_username\":\"Patrickqueen_\",\"sportsdata_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"team\":\"BAL\",\"cbs_id\":\"2804566\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32677\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"318\",\"id\":\"14897\",\"draft_team\":\"CAR\",\"birthdate\":\"892616400\",\"name\":\"Brown, Derrick\",\"draft_pick\":\"7\",\"college\":\"Auburn\",\"rotowire_id\":\"13852\",\"height\":\"77\",\"twitter_username\":\"DerrickBrownAU5\",\"sportsdata_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"team\":\"CAR\",\"cbs_id\":\"2241797\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32726\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14898\",\"draft_team\":\"MIA\",\"birthdate\":\"865918800\",\"name\":\"Davis, Raekwon\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"14538\",\"height\":\"79\",\"twitter_username\":\"raekwondavis_99\",\"sportsdata_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"team\":\"MIA\",\"cbs_id\":\"2252833\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32684\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14899\",\"draft_team\":\"SFO\",\"birthdate\":\"875854800\",\"name\":\"Kinlaw, Javon\",\"draft_pick\":\"14\",\"college\":\"South Carolina\",\"rotowire_id\":\"14444\",\"height\":\"78\",\"twitter_username\":\"JavonKinlaw\",\"sportsdata_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"team\":\"SFO\",\"cbs_id\":\"2869019\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32741\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14900\",\"draft_team\":\"BAL\",\"birthdate\":\"879742800\",\"name\":\"Madubuike, Justin\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14380\",\"height\":\"75\",\"twitter_username\":\"MadubuikeJustin\",\"sportsdata_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"team\":\"BAL\",\"cbs_id\":\"2249188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32752\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"302\",\"id\":\"14901\",\"draft_team\":\"DAL\",\"birthdate\":\"853477200\",\"name\":\"Gallimore, Neville\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14451\",\"height\":\"74\",\"twitter_username\":\"path2greatwork\",\"sportsdata_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"team\":\"DAL\",\"cbs_id\":\"2179652\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32673\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14902\",\"draft_team\":\"DET\",\"birthdate\":\"917931600\",\"name\":\"Okudah, Jeff\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"14424\",\"height\":\"73\",\"twitter_username\":\"jeffokudah\",\"sportsdata_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"team\":\"DET\",\"cbs_id\":\"2804425\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32721\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"14903\",\"draft_team\":\"DAL\",\"birthdate\":\"906267600\",\"name\":\"Diggs, Trevon\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"14389\",\"height\":\"74\",\"twitter_username\":\"TrevonDiggs\",\"sportsdata_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"team\":\"DAL\",\"cbs_id\":\"2252834\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32731\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14904\",\"draft_team\":\"TEN\",\"birthdate\":\"904798800\",\"name\":\"Fulton, Kristian\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"14443\",\"height\":\"72\",\"twitter_username\":\"Kriss1_\",\"sportsdata_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"team\":\"TEN\",\"cbs_id\":\"2223248\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32679\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14905\",\"draft_team\":\"JAC\",\"birthdate\":\"907131600\",\"name\":\"Henderson, CJ\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"14367\",\"height\":\"73\",\"twitter_username\":\"HendersonChris_\",\"sportsdata_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"team\":\"JAC\",\"cbs_id\":\"2773013\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32689\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14906\",\"draft_team\":\"LVR\",\"birthdate\":\"823237200\",\"name\":\"Arnette, Damon\",\"draft_pick\":\"19\",\"college\":\"Ohio State\",\"rotowire_id\":\"14547\",\"height\":\"72\",\"twitter_username\":\"damon_arnette\",\"sportsdata_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"team\":\"LVR\",\"cbs_id\":\"2179793\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32714\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"14907\",\"draft_team\":\"CLE\",\"birthdate\":\"906267600\",\"name\":\"Delpit, Grant\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"14507\",\"height\":\"75\",\"twitter_username\":\"realgrantdelpit\",\"sportsdata_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"team\":\"CLE\",\"cbs_id\":\"2804169\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32706\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14908\",\"draft_team\":\"NYG\",\"birthdate\":\"934174800\",\"name\":\"McKinney, Xavier\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"rotowire_id\":\"14617\",\"height\":\"73\",\"twitter_username\":\"mckinney15__\",\"sportsdata_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"team\":\"NYG\",\"cbs_id\":\"2741205\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32715\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14909\",\"draft_team\":\"TBB\",\"birthdate\":\"903243600\",\"name\":\"Winfield, Antoine\",\"draft_pick\":\"13\",\"college\":\"Minnesota\",\"rotowire_id\":\"14484\",\"height\":\"69\",\"twitter_username\":\"AntoineWJr11\",\"sportsdata_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"team\":\"TBB\",\"cbs_id\":\"2239774\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32740\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14910\",\"draft_team\":\"MIA\",\"birthdate\":\"891493200\",\"name\":\"Jones, Brandon\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"rotowire_id\":\"14696\",\"height\":\"72\",\"twitter_username\":\"BlessedJones33\",\"sportsdata_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"team\":\"MIA\",\"cbs_id\":\"2246113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32738\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14911\",\"draft_team\":\"NYJ\",\"birthdate\":\"844923600\",\"name\":\"Davis, Ashtyn\",\"draft_pick\":\"4\",\"college\":\"California\",\"rotowire_id\":\"14447\",\"height\":\"73\",\"sportsdata_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"team\":\"NYJ\",\"cbs_id\":\"2180264\"},{\"draft_year\":\"2020\",\"birthdate\":\"854514000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33211\",\"position\":\"PK\",\"name\":\"Blankenship, Rodrigo\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14437\",\"weight\":\"191\",\"sportsdata_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"id\":\"14912\",\"team\":\"IND\",\"cbs_id\":\"2183949\"},{\"draft_year\":\"2018\",\"birthdate\":\"773298000\",\"draft_team\":\"FA\",\"stats_id\":\"31669\",\"position\":\"DE\",\"name\":\"Walker, Cavon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13244\",\"weight\":\"278\",\"sportsdata_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"id\":\"14913\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"640933200\",\"draft_team\":\"FA\",\"stats_id\":\"32668\",\"position\":\"PK\",\"name\":\"Hajrullahu, Lirim\",\"college\":\"Western Ontario\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14808\",\"weight\":\"205\",\"sportsdata_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"id\":\"14914\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"799563600\",\"draft_team\":\"FA\",\"stats_id\":\"32667\",\"position\":\"PK\",\"name\":\"MacGinnis, Austin\",\"college\":\"Kentucky\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14354\",\"weight\":\"185\",\"sportsdata_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"id\":\"14915\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"878706000\",\"draft_team\":\"FA\",\"stats_id\":\"32097\",\"position\":\"CB\",\"name\":\"Smith, Saivion\",\"college\":\"Alabama\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13589\",\"jersey\":\"35\",\"weight\":\"199\",\"sportsdata_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"id\":\"14916\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852613200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32669\",\"position\":\"RB\",\"name\":\"Patrick, Jacques\",\"college\":\"Florida State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13964\",\"weight\":\"236\",\"sportsdata_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"id\":\"14917\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32686\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14918\",\"draft_team\":\"ATL\",\"birthdate\":\"906526800\",\"name\":\"Terrell, A.J.\",\"draft_pick\":\"16\",\"college\":\"Clemson\",\"rotowire_id\":\"14526\",\"height\":\"74\",\"twitter_username\":\"ajterrell_8\",\"sportsdata_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"team\":\"ATL\",\"cbs_id\":\"2809212\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32700\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14919\",\"draft_team\":\"MIA\",\"birthdate\":\"943678800\",\"name\":\"Igbinoghene, Noah\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"14713\",\"height\":\"71\",\"twitter_username\":\"Noah_Igbo9\",\"sportsdata_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"team\":\"MIA\",\"cbs_id\":\"2829987\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32701\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14920\",\"draft_team\":\"MIN\",\"birthdate\":\"850366800\",\"name\":\"Gladney, Jeff\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"14548\",\"height\":\"72\",\"sportsdata_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"team\":\"MIN\",\"cbs_id\":\"2180855\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32710\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14921\",\"draft_team\":\"NEP\",\"birthdate\":\"827470800\",\"name\":\"Dugger, Kyle\",\"draft_pick\":\"5\",\"college\":\"Lenoir-Rhyne University\",\"rotowire_id\":\"14542\",\"height\":\"74\",\"twitter_username\":\"KingDugg_3\",\"sportsdata_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"team\":\"NEP\",\"cbs_id\":\"3150388\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32709\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14922\",\"draft_team\":\"HOU\",\"birthdate\":\"899960400\",\"name\":\"Blacklock, Ross\",\"draft_pick\":\"8\",\"college\":\"TCU\",\"rotowire_id\":\"14406\",\"height\":\"76\",\"twitter_username\":\"1krozayy\",\"sportsdata_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"team\":\"HOU\",\"cbs_id\":\"2240321\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32718\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14923\",\"draft_team\":\"SEA\",\"birthdate\":\"859179600\",\"name\":\"Taylor, Darrell\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"14649\",\"height\":\"75\",\"twitter_username\":\"darrelltaylorst\",\"sportsdata_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"team\":\"SEA\",\"cbs_id\":\"2180538\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32720\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14924\",\"draft_team\":\"CHI\",\"name\":\"Johnson, Jaylon\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14627\",\"height\":\"72\",\"twitter_username\":\"NBAxJay1\",\"sportsdata_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"team\":\"CHI\",\"cbs_id\":\"2827532\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32730\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14925\",\"draft_team\":\"NEP\",\"birthdate\":\"906094800\",\"name\":\"Uche, Josh\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"14477\",\"height\":\"74\",\"twitter_username\":\"_Uche35\",\"sportsdata_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"team\":\"NEP\",\"cbs_id\":\"2260670\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32733\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14926\",\"draft_team\":\"KCC\",\"birthdate\":\"887518800\",\"name\":\"Gay, Willie\",\"draft_pick\":\"31\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14520\",\"height\":\"74\",\"twitter_username\":\"WillieG___\",\"sportsdata_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32734\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14927\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Chinn, Jeremy\",\"draft_pick\":\"32\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14623\",\"height\":\"75\",\"twitter_username\":\"ChinnJeremy2\",\"sportsdata_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"team\":\"CAR\",\"cbs_id\":\"2247190\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32735\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14928\",\"draft_team\":\"CIN\",\"birthdate\":\"836802000\",\"name\":\"Wilson, Logan\",\"draft_pick\":\"1\",\"college\":\"Wyoming\",\"rotowire_id\":\"14647\",\"height\":\"74\",\"twitter_username\":\"ljw21\",\"sportsdata_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"team\":\"CIN\",\"cbs_id\":\"2181091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32737\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"241\",\"id\":\"14929\",\"draft_team\":\"DET\",\"birthdate\":\"883198800\",\"name\":\"Okwara, Julian\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14448\",\"height\":\"77\",\"twitter_username\":\"julian_okwara\",\"sportsdata_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"team\":\"DET\",\"cbs_id\":\"2260688\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32743\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14930\",\"draft_team\":\"JAC\",\"name\":\"Hamilton, Davon\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"14714\",\"height\":\"76\",\"twitter_username\":\"dmhamilton53\",\"sportsdata_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"team\":\"JAC\",\"cbs_id\":\"2179811\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32747\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14931\",\"draft_team\":\"DEN\",\"birthdate\":\"874040400\",\"name\":\"Ojemudia, Michael\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"14711\",\"height\":\"73\",\"twitter_username\":\"GotMo_J\",\"sportsdata_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"team\":\"DEN\",\"cbs_id\":\"2179727\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"252\",\"id\":\"14932\",\"draft_team\":\"LAR\",\"name\":\"Lewis, Terrell\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"rotowire_id\":\"14390\",\"height\":\"77\",\"twitter_username\":\"_real24_\",\"sportsdata_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"team\":\"LAR\",\"cbs_id\":\"2252836\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32755\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"14933\",\"draft_team\":\"IND\",\"birthdate\":\"903934800\",\"name\":\"Blackmon, Julian\",\"draft_pick\":\"21\",\"college\":\"Utah\",\"rotowire_id\":\"14704\",\"height\":\"73\",\"twitter_username\":\"jumpmanjuice23\",\"sportsdata_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"team\":\"IND\",\"cbs_id\":\"2253091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32758\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14934\",\"draft_team\":\"CLE\",\"birthdate\":\"880261200\",\"name\":\"Elliott, Jordan\",\"draft_pick\":\"24\",\"college\":\"Missouri\",\"rotowire_id\":\"14353\",\"height\":\"76\",\"twitter_username\":\"bigj5k\",\"sportsdata_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"team\":\"CLE\",\"cbs_id\":\"2246110\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32759\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14935\",\"draft_team\":\"MIN\",\"birthdate\":\"904798800\",\"name\":\"Dantzler, Cameron\",\"draft_pick\":\"25\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14363\",\"height\":\"74\",\"twitter_username\":\"camdantzler3\",\"sportsdata_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"team\":\"MIN\",\"cbs_id\":\"2248633\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32761\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14936\",\"draft_team\":\"NEP\",\"birthdate\":\"871534800\",\"name\":\"Asiasi, Devin\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"14425\",\"height\":\"75\",\"twitter_username\":\"ASI2X\",\"sportsdata_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"team\":\"NEP\",\"cbs_id\":\"2260483\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32765\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14937\",\"draft_team\":\"DEN\",\"birthdate\":\"875163600\",\"name\":\"Agim, McTelvin\",\"draft_pick\":\"31\",\"college\":\"Arkansas\",\"rotowire_id\":\"14602\",\"height\":\"75\",\"twitter_username\":\"So_Splash\",\"sportsdata_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"team\":\"DEN\",\"cbs_id\":\"2240258\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32770\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14938\",\"draft_team\":\"LVR\",\"birthdate\":\"841986000\",\"name\":\"Muse, Tanner\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"14690\",\"height\":\"75\",\"twitter_username\":\"tanner_muse\",\"sportsdata_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"team\":\"LVR\",\"cbs_id\":\"2179227\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32771\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14939\",\"draft_team\":\"NEP\",\"birthdate\":\"924066000\",\"name\":\"Keene, Dalton\",\"draft_pick\":\"37\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14559\",\"height\":\"76\",\"twitter_username\":\"DaltonKeene18\",\"sportsdata_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"team\":\"NEP\",\"cbs_id\":\"2805113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32772\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"14940\",\"draft_team\":\"PIT\",\"birthdate\":\"870930000\",\"name\":\"Highsmith, Alex\",\"draft_pick\":\"38\",\"college\":\"North Carolina-Charlotte\",\"rotowire_id\":\"14724\",\"height\":\"76\",\"twitter_username\":\"highsmith34\",\"sportsdata_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"team\":\"PIT\",\"cbs_id\":\"2241393\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32773\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14941\",\"draft_team\":\"PHI\",\"birthdate\":\"902293200\",\"name\":\"Taylor, Davion\",\"draft_pick\":\"39\",\"college\":\"Colorado\",\"rotowire_id\":\"14751\",\"height\":\"74\",\"twitter_username\":\"daviontaylot\",\"sportsdata_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"team\":\"PHI\",\"cbs_id\":\"2962569\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32774\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14942\",\"draft_team\":\"LAR\",\"birthdate\":\"910846800\",\"name\":\"Burgess, Terrell\",\"draft_pick\":\"40\",\"college\":\"Utah\",\"rotowire_id\":\"14702\",\"height\":\"72\",\"twitter_username\":\"titaniumt98\",\"sportsdata_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"team\":\"LAR\",\"cbs_id\":\"2240499\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32777\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14943\",\"draft_team\":\"CIN\",\"birthdate\":\"874818000\",\"name\":\"Davis-Gaither, Akeem\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14661\",\"height\":\"74\",\"twitter_username\":\"AkeemDavis16\",\"sportsdata_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"team\":\"CIN\",\"cbs_id\":\"2182263\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32780\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14944\",\"draft_team\":\"NYG\",\"birthdate\":\"898578000\",\"name\":\"Holmes, Darney\",\"draft_pick\":\"4\",\"college\":\"UCLA\",\"rotowire_id\":\"14535\",\"height\":\"70\",\"twitter_username\":\"prowaydarnay\",\"sportsdata_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32783\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"14945\",\"draft_team\":\"CAR\",\"birthdate\":\"885186000\",\"name\":\"Pride, Troy\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14581\",\"height\":\"71\",\"twitter_username\":\"TroyPride18\",\"sportsdata_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"team\":\"CAR\",\"cbs_id\":\"2260689\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32784\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"335\",\"id\":\"14946\",\"draft_team\":\"ARI\",\"birthdate\":\"903848400\",\"name\":\"Fotu, Leki\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"14712\",\"height\":\"77\",\"twitter_username\":\"LekiFotu\",\"sportsdata_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"team\":\"ARI\",\"cbs_id\":\"2240504\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32787\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14947\",\"draft_team\":\"MIN\",\"birthdate\":\"878274000\",\"name\":\"Wonnum, D.J.\",\"draft_pick\":\"11\",\"college\":\"South Carolina\",\"rotowire_id\":\"14612\",\"height\":\"77\",\"twitter_username\":\"dwonnum\",\"sportsdata_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"team\":\"MIN\",\"cbs_id\":\"2252822\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32789\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14948\",\"draft_team\":\"ATL\",\"birthdate\":\"872744400\",\"name\":\"Walker, Mykal\",\"draft_pick\":\"13\",\"college\":\"Fresno State\",\"rotowire_id\":\"14754\",\"height\":\"75\",\"twitter_username\":\"MykalWalker3\",\"sportsdata_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"team\":\"ATL\",\"cbs_id\":\"2865637\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32793\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14949\",\"draft_team\":\"DAL\",\"birthdate\":\"860994000\",\"name\":\"Robinson, Reggie\",\"draft_pick\":\"17\",\"college\":\"Tulsa\",\"rotowire_id\":\"14708\",\"height\":\"73\",\"twitter_username\":\"RegRobII\",\"sportsdata_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32797\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14950\",\"draft_team\":\"PHI\",\"birthdate\":\"869806800\",\"name\":\"Wallace, K'Von\",\"draft_pick\":\"21\",\"college\":\"Clemson\",\"rotowire_id\":\"14686\",\"height\":\"71\",\"twitter_username\":\"KVonWallace\",\"sportsdata_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"team\":\"PHI\",\"cbs_id\":\"2239538\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32800\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"14951\",\"draft_team\":\"MIN\",\"birthdate\":\"916808400\",\"name\":\"Lynch, James\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"14499\",\"height\":\"76\",\"twitter_username\":\"JamesHusker38\",\"sportsdata_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"team\":\"MIN\",\"cbs_id\":\"2868531\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32801\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"308\",\"id\":\"14952\",\"draft_team\":\"ARI\",\"birthdate\":\"904194000\",\"name\":\"Lawrence, Rashard\",\"draft_pick\":\"25\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14717\",\"height\":\"74\",\"twitter_username\":\"Rashard_99\",\"sportsdata_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"team\":\"ARI\",\"cbs_id\":\"2223249\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32802\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14953\",\"draft_team\":\"MIN\",\"birthdate\":\"843022800\",\"name\":\"Dye, Troy\",\"draft_pick\":\"26\",\"college\":\"Oregon\",\"rotowire_id\":\"14740\",\"height\":\"76\",\"twitter_username\":\"tdye15dbtroy\",\"sportsdata_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"team\":\"MIN\",\"cbs_id\":\"2221826\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32804\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14954\",\"draft_team\":\"ATL\",\"birthdate\":\"872485200\",\"name\":\"Hawkins, Jaylinn\",\"draft_pick\":\"28\",\"college\":\"California\",\"rotowire_id\":\"14697\",\"height\":\"74\",\"twitter_username\":\"jhawko6\",\"sportsdata_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"team\":\"ATL\",\"cbs_id\":\"2180267\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32807\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"14955\",\"draft_team\":\"JAC\",\"birthdate\":\"923288400\",\"name\":\"Scott, Josiah\",\"draft_pick\":\"31\",\"college\":\"Michigan State\",\"rotowire_id\":\"14413\",\"height\":\"70\",\"twitter_username\":\"josiahscott7\",\"sportsdata_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"team\":\"JAC\",\"cbs_id\":\"2807092\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32808\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14956\",\"draft_team\":\"KCC\",\"birthdate\":\"853822800\",\"name\":\"Sneed, L'Jarius\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14688\",\"height\":\"73\",\"sportsdata_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"team\":\"KCC\",\"cbs_id\":\"2239881\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32809\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14957\",\"draft_team\":\"LVR\",\"birthdate\":\"899701200\",\"name\":\"Robertson, Amik\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14709\",\"height\":\"69\",\"twitter_username\":\"_youngtruth7\",\"sportsdata_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"team\":\"LVR\",\"cbs_id\":\"2816298\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32810\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14958\",\"draft_team\":\"JAC\",\"birthdate\":\"878014800\",\"name\":\"Quarterman, Shaquille\",\"draft_pick\":\"34\",\"college\":\"Miami\",\"rotowire_id\":\"14747\",\"height\":\"73\",\"sportsdata_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"team\":\"JAC\",\"cbs_id\":\"2221934\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32811\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"181\",\"id\":\"14959\",\"draft_team\":\"HOU\",\"birthdate\":\"832136400\",\"name\":\"Reid, John\",\"draft_pick\":\"35\",\"college\":\"Penn State\",\"rotowire_id\":\"14710\",\"height\":\"70\",\"twitter_username\":\"John_Doe_25\",\"sportsdata_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"team\":\"HOU\",\"cbs_id\":\"2186643\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32818\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14960\",\"draft_team\":\"SEA\",\"birthdate\":\"896763600\",\"name\":\"Robinson, Alton\",\"draft_pick\":\"2\",\"college\":\"Syracuse\",\"rotowire_id\":\"14727\",\"height\":\"76\",\"sportsdata_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"team\":\"SEA\",\"cbs_id\":\"2868213\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32822\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14961\",\"draft_team\":\"CAR\",\"name\":\"Robinson, Kenny\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"rotowire_id\":\"14787\",\"height\":\"74\",\"twitter_username\":\"krob2__\",\"sportsdata_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"team\":\"CAR\",\"cbs_id\":\"2835561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32825\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"268\",\"id\":\"14962\",\"draft_team\":\"CHI\",\"birthdate\":\"866178000\",\"name\":\"Gipson, Trevis\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"rotowire_id\":\"14680\",\"height\":\"76\",\"twitter_username\":\"trevisgipson\",\"sportsdata_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"team\":\"CHI\",\"cbs_id\":\"2181277\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32827\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14963\",\"draft_team\":\"JAC\",\"birthdate\":\"899269200\",\"name\":\"Thomas, Daniel\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"14687\",\"height\":\"71\",\"twitter_username\":\"gamechanger021\",\"sportsdata_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"team\":\"JAC\",\"cbs_id\":\"2241807\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32828\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14964\",\"draft_team\":\"NYJ\",\"birthdate\":\"863326800\",\"name\":\"Hall, Bryce\",\"draft_pick\":\"12\",\"college\":\"Virginia\",\"rotowire_id\":\"14445\",\"height\":\"73\",\"sportsdata_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"team\":\"NYJ\",\"cbs_id\":\"2251254\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32829\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14965\",\"draft_team\":\"NEP\",\"birthdate\":\"849934800\",\"name\":\"Rohrwasser, Justin\",\"draft_pick\":\"13\",\"college\":\"Marshall\",\"rotowire_id\":\"14822\",\"height\":\"75\",\"sportsdata_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"team\":\"NEP\",\"cbs_id\":\"2194734\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32832\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14966\",\"draft_team\":\"WAS\",\"birthdate\":\"881384400\",\"name\":\"Hudson, Khaleke\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"14480\",\"height\":\"72\",\"twitter_username\":\"KhalekeHudson\",\"sportsdata_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"team\":\"WAS\",\"cbs_id\":\"2260652\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32833\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14967\",\"draft_team\":\"CHI\",\"birthdate\":\"881816400\",\"name\":\"Vildor, Kindle\",\"draft_pick\":\"17\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14706\",\"height\":\"71\",\"twitter_username\":\"ThePremier20\",\"sportsdata_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"team\":\"CHI\",\"cbs_id\":\"2252448\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32834\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14968\",\"draft_team\":\"MIA\",\"birthdate\":\"902120400\",\"name\":\"Weaver, Curtis\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"14409\",\"height\":\"75\",\"twitter_username\":\"curtisweaver99\",\"sportsdata_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"team\":\"MIA\",\"cbs_id\":\"2257946\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32838\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14969\",\"draft_team\":\"PHI\",\"birthdate\":\"833518800\",\"name\":\"Hightower, John\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"rotowire_id\":\"14567\",\"height\":\"74\",\"sportsdata_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"team\":\"PHI\",\"cbs_id\":\"2969061\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32839\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14970\",\"draft_team\":\"MIN\",\"name\":\"Hand, Harrison\",\"draft_pick\":\"23\",\"college\":\"Temple\",\"rotowire_id\":\"14522\",\"height\":\"72\",\"twitter_username\":\"__harry22\",\"sportsdata_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"team\":\"MIN\",\"cbs_id\":\"2868561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32840\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14971\",\"draft_team\":\"BAL\",\"birthdate\":\"849675600\",\"name\":\"Washington, Broderick\",\"draft_pick\":\"24\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14720\",\"height\":\"75\",\"sportsdata_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"team\":\"BAL\",\"cbs_id\":\"2185746\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32841\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14972\",\"draft_team\":\"HOU\",\"name\":\"Coulter, Isaiah\",\"draft_pick\":\"25\",\"college\":\"Rhode Island\",\"rotowire_id\":\"14537\",\"height\":\"75\",\"sportsdata_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"team\":\"HOU\",\"cbs_id\":\"2830035\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32842\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14973\",\"draft_team\":\"DET\",\"birthdate\":\"893048400\",\"name\":\"Huntley, Jason\",\"draft_pick\":\"26\",\"college\":\"New Mexico State\",\"rotowire_id\":\"14796\",\"height\":\"69\",\"twitter_username\":\"thejasonhuntley\",\"sportsdata_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"team\":\"DET\",\"cbs_id\":\"2239939\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32843\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14974\",\"draft_team\":\"CHI\",\"birthdate\":\"878101200\",\"name\":\"Mooney, Darnell\",\"draft_pick\":\"27\",\"college\":\"Tulane\",\"rotowire_id\":\"14510\",\"height\":\"71\",\"twitter_username\":\"Darnell_M1\",\"sportsdata_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"team\":\"CHI\",\"cbs_id\":\"2240651\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32844\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"291\",\"id\":\"14975\",\"draft_team\":\"TEN\",\"birthdate\":\"861858000\",\"name\":\"Murchison, Larrell\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14718\",\"height\":\"75\",\"twitter_username\":\"Murchboy92\",\"sportsdata_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"team\":\"TEN\",\"cbs_id\":\"2865164\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32845\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14976\",\"draft_team\":\"GBP\",\"birthdate\":\"898059600\",\"name\":\"Martin, Kamal\",\"draft_pick\":\"29\",\"college\":\"Minnesota\",\"rotowire_id\":\"14385\",\"height\":\"75\",\"twitter_username\":\"KamalMartin6\",\"sportsdata_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"team\":\"GBP\",\"cbs_id\":\"2239765\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32846\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14977\",\"draft_team\":\"MIN\",\"birthdate\":\"865918800\",\"name\":\"Osborn, K.J.\",\"draft_pick\":\"30\",\"college\":\"Miami\",\"rotowire_id\":\"14641\",\"height\":\"72\",\"sportsdata_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"team\":\"MIN\",\"cbs_id\":\"2184383\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32847\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14978\",\"draft_team\":\"KCC\",\"birthdate\":\"881211600\",\"name\":\"Danna, Michael\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"14823\",\"height\":\"74\",\"twitter_username\":\"M_Danna4\",\"sportsdata_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"team\":\"KCC\",\"cbs_id\":\"2180090\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32848\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14979\",\"draft_team\":\"DEN\",\"birthdate\":\"840603600\",\"name\":\"Strnad, Justin\",\"draft_pick\":\"32\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14757\",\"height\":\"75\",\"twitter_username\":\"jsgarbs\",\"sportsdata_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"team\":\"DEN\",\"cbs_id\":\"2186413\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32852\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14980\",\"draft_team\":\"NYG\",\"birthdate\":\"891406800\",\"name\":\"Brown, Cam\",\"draft_pick\":\"4\",\"college\":\"Penn State\",\"rotowire_id\":\"14596\",\"height\":\"77\",\"sportsdata_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"team\":\"NYG\",\"cbs_id\":\"2251294\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32854\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14981\",\"draft_team\":\"CAR\",\"birthdate\":\"845614800\",\"name\":\"Roy, Bravvion\",\"draft_pick\":\"5\",\"college\":\"Baylor\",\"rotowire_id\":\"14824\",\"height\":\"73\",\"twitter_username\":\"brave_roy\",\"sportsdata_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"team\":\"CAR\",\"cbs_id\":\"2253081\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32856\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14982\",\"draft_team\":\"LAC\",\"birthdate\":\"874472400\",\"name\":\"Gilman, Alohi\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14521\",\"height\":\"71\",\"twitter_username\":\"alohigilman\",\"sportsdata_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"team\":\"LAC\",\"cbs_id\":\"2868542\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32858\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14983\",\"draft_team\":\"BUF\",\"birthdate\":\"855896400\",\"name\":\"Bass, Tyler\",\"draft_pick\":\"9\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14609\",\"height\":\"70\",\"twitter_username\":\"tbass_xvi\",\"sportsdata_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"team\":\"BUF\",\"cbs_id\":\"2188356\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32860\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14984\",\"draft_team\":\"SFO\",\"birthdate\":\"876978000\",\"name\":\"Woerner, Charlie\",\"draft_pick\":\"11\",\"college\":\"Georgia\",\"rotowire_id\":\"14608\",\"height\":\"77\",\"sportsdata_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"team\":\"SFO\",\"cbs_id\":\"2248629\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32861\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14985\",\"draft_team\":\"NYJ\",\"birthdate\":\"880347600\",\"name\":\"Mann, Braden\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14654\",\"height\":\"71\",\"twitter_username\":\"MannBraden\",\"sportsdata_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32863\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"14986\",\"draft_team\":\"IND\",\"birthdate\":\"853304400\",\"name\":\"Windsor, Robert\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14613\",\"height\":\"77\",\"twitter_username\":\"RobertWindsor54\",\"sportsdata_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"team\":\"IND\",\"cbs_id\":\"2186647\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32864\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14987\",\"draft_team\":\"TBB\",\"birthdate\":\"840690000\",\"name\":\"Davis, Khalil\",\"draft_pick\":\"15\",\"college\":\"Nebraska\",\"rotowire_id\":\"14682\",\"height\":\"74\",\"twitter_username\":\"khalildaish95\",\"sportsdata_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"team\":\"TBB\",\"cbs_id\":\"2179622\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32866\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14988\",\"draft_team\":\"PHI\",\"birthdate\":\"860475600\",\"name\":\"Bradley, Shaun\",\"draft_pick\":\"17\",\"college\":\"Temple\",\"rotowire_id\":\"14737\",\"height\":\"73\",\"twitter_username\":\"Sdot_Bradley5\",\"sportsdata_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"team\":\"PHI\",\"cbs_id\":\"2239597\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32867\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14989\",\"draft_team\":\"DET\",\"birthdate\":\"865054800\",\"name\":\"Penisini, John\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14719\",\"height\":\"74\",\"twitter_username\":\"Dub_jayy_boy\",\"sportsdata_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"team\":\"DET\",\"cbs_id\":\"2827536\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32868\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14990\",\"draft_team\":\"PIT\",\"birthdate\":\"909550800\",\"name\":\"Brooks, Antoine\",\"draft_pick\":\"19\",\"college\":\"Maryland\",\"rotowire_id\":\"14595\",\"height\":\"71\",\"twitter_username\":\"TwanDoee\",\"sportsdata_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32869\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14991\",\"draft_team\":\"LAR\",\"birthdate\":\"888987600\",\"name\":\"Fuller, Jordan\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"14698\",\"height\":\"74\",\"twitter_username\":\"j_fuller4\",\"sportsdata_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"team\":\"LAR\",\"cbs_id\":\"2260978\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32870\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14992\",\"draft_team\":\"PHI\",\"birthdate\":\"897368400\",\"name\":\"Watkins, Quez\",\"draft_pick\":\"21\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"14464\",\"height\":\"74\",\"twitter_username\":\"AdamSchefter\",\"sportsdata_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"team\":\"PHI\",\"cbs_id\":\"2262953\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32872\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14993\",\"draft_team\":\"ARI\",\"birthdate\":\"902811600\",\"name\":\"Weaver, Evan\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"14752\",\"height\":\"75\",\"twitter_username\":\"Weavin_it\",\"sportsdata_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"team\":\"ARI\",\"cbs_id\":\"2250836\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32874\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"248\",\"id\":\"14994\",\"draft_team\":\"NEP\",\"birthdate\":\"907390800\",\"name\":\"Maluia, Cassh\",\"draft_pick\":\"25\",\"college\":\"Wyoming\",\"rotowire_id\":\"14826\",\"height\":\"72\",\"twitter_username\":\"cassh7mula\",\"sportsdata_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"team\":\"NEP\",\"cbs_id\":\"2258320\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32875\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14995\",\"draft_team\":\"MIN\",\"birthdate\":\"885358800\",\"name\":\"Metellus, Josh\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"rotowire_id\":\"14479\",\"height\":\"72\",\"twitter_username\":\"NoExcuses_23\",\"sportsdata_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"team\":\"MIN\",\"cbs_id\":\"2260662\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32876\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14996\",\"draft_team\":\"JAC\",\"birthdate\":\"859957200\",\"name\":\"Davis, Tyler\",\"draft_pick\":\"27\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14827\",\"height\":\"76\",\"twitter_username\":\"Tyler_Davis9\",\"sportsdata_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"team\":\"JAC\",\"cbs_id\":\"2182811\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32881\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"14997\",\"draft_team\":\"IND\",\"birthdate\":\"884149200\",\"name\":\"Rodgers, Isaiah\",\"draft_pick\":\"32\",\"college\":\"Massachusetts\",\"rotowire_id\":\"14828\",\"height\":\"70\",\"twitter_username\":\"rodgers_isaiah\",\"sportsdata_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"team\":\"IND\",\"cbs_id\":\"2261492\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32882\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14998\",\"draft_team\":\"IND\",\"birthdate\":\"902379600\",\"name\":\"Patmon, Dezmon\",\"draft_pick\":\"33\",\"college\":\"Washington State\",\"rotowire_id\":\"14643\",\"height\":\"76\",\"twitter_username\":\"dadpat7\",\"sportsdata_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"team\":\"IND\",\"cbs_id\":\"2221990\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32883\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"226\",\"id\":\"14999\",\"draft_team\":\"IND\",\"birthdate\":\"835938000\",\"name\":\"Glasgow, Jordan\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"14799\",\"height\":\"73\",\"sportsdata_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"team\":\"IND\",\"cbs_id\":\"2185709\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32885\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15000\",\"draft_team\":\"CIN\",\"birthdate\":\"857710800\",\"name\":\"Bailey, Markus\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"rotowire_id\":\"14736\",\"height\":\"73\",\"twitter_username\":\"mb_boiler21\",\"sportsdata_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"team\":\"CIN\",\"cbs_id\":\"2183896\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32886\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"15001\",\"draft_team\":\"WAS\",\"birthdate\":\"922856400\",\"name\":\"Curl, Kamren\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"rotowire_id\":\"14381\",\"height\":\"74\",\"twitter_username\":\"KCurl_2\",\"sportsdata_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"team\":\"WAS\",\"cbs_id\":\"2866171\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32888\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"15002\",\"draft_team\":\"NYG\",\"birthdate\":\"869461200\",\"name\":\"Coughlin, Carter\",\"draft_pick\":\"4\",\"college\":\"Minnesota\",\"rotowire_id\":\"14580\",\"height\":\"76\",\"twitter_username\":\"Cmoe34\",\"sportsdata_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"team\":\"NYG\",\"cbs_id\":\"2239754\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32889\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15003\",\"draft_team\":\"BAL\",\"birthdate\":\"924498000\",\"name\":\"Stone, Geno\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"14474\",\"height\":\"71\",\"twitter_username\":\"GenoStone22\",\"sportsdata_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"team\":\"BAL\",\"cbs_id\":\"2867170\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32891\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"184\",\"id\":\"15004\",\"draft_team\":\"CAR\",\"birthdate\":\"896936400\",\"name\":\"Thomas-Oliver, Stantley\",\"draft_pick\":\"7\",\"college\":\"Florida International\",\"rotowire_id\":\"14707\",\"height\":\"74\",\"twitter_username\":\"__Alcatraz21\",\"sportsdata_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"team\":\"CAR\",\"cbs_id\":\"2262783\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32895\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15005\",\"draft_team\":\"MIN\",\"birthdate\":\"869547600\",\"name\":\"Willekes, Kenny\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"14732\",\"height\":\"76\",\"twitter_username\":\"kennyw97\",\"sportsdata_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"team\":\"MIN\",\"cbs_id\":\"2186438\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32898\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"15006\",\"draft_team\":\"ATL\",\"birthdate\":\"849762000\",\"name\":\"Hofrichter, Sterling\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"rotowire_id\":\"14653\",\"height\":\"69\",\"twitter_username\":\"shofrichter10\",\"sportsdata_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"team\":\"ATL\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32899\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"15007\",\"draft_team\":\"WAS\",\"birthdate\":\"870238800\",\"name\":\"Smith-Williams, James\",\"draft_pick\":\"15\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14729\",\"height\":\"75\",\"twitter_username\":\"jacsw3\",\"sportsdata_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"team\":\"WAS\",\"cbs_id\":\"2179368\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32901\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15008\",\"draft_team\":\"DAL\",\"birthdate\":\"848811600\",\"name\":\"DiNucci, Ben\",\"draft_pick\":\"17\",\"college\":\"James Madison\",\"rotowire_id\":\"14832\",\"height\":\"75\",\"twitter_username\":\"B_DiNucci6\",\"sportsdata_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"team\":\"DAL\",\"cbs_id\":\"2179411\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32902\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"15009\",\"draft_team\":\"PIT\",\"birthdate\":\"840690000\",\"name\":\"Davis, Carlos\",\"draft_pick\":\"18\",\"college\":\"Nebraska\",\"rotowire_id\":\"14681\",\"height\":\"74\",\"sportsdata_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"team\":\"PIT\",\"cbs_id\":\"2179621\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32903\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"247\",\"id\":\"15010\",\"draft_team\":\"PHI\",\"name\":\"Toohill, Casey\",\"draft_pick\":\"19\",\"college\":\"Stanford\",\"rotowire_id\":\"14753\",\"height\":\"76\",\"twitter_username\":\"CaseyToohill\",\"sportsdata_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"team\":\"PHI\",\"cbs_id\":\"2186841\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32904\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"232\",\"id\":\"15011\",\"draft_team\":\"LAR\",\"birthdate\":\"839480400\",\"name\":\"Johnston, Clay\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"rotowire_id\":\"14743\",\"height\":\"73\",\"twitter_username\":\"C_Johnston4\",\"sportsdata_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"team\":\"LAR\",\"cbs_id\":\"2189507\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32905\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"285\",\"id\":\"15012\",\"draft_team\":\"DET\",\"birthdate\":\"851922000\",\"name\":\"Cornell, Jashon\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"14833\",\"height\":\"75\",\"twitter_username\":\"JayRock_9\",\"sportsdata_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"team\":\"DET\",\"cbs_id\":\"2179802\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32906\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"15013\",\"draft_team\":\"GBP\",\"birthdate\":\"873954000\",\"name\":\"Scott, Vernon\",\"draft_pick\":\"22\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14779\",\"height\":\"74\",\"twitter_username\":\"OfficialVern_\",\"sportsdata_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"team\":\"GBP\",\"cbs_id\":\"2240340\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32907\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"15014\",\"draft_team\":\"KCC\",\"birthdate\":\"879051600\",\"name\":\"Keyes, Thakarius\",\"draft_pick\":\"23\",\"college\":\"Tulane\",\"rotowire_id\":\"14579\",\"height\":\"73\",\"twitter_username\":\"TzKeyes\",\"sportsdata_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32908\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15015\",\"draft_team\":\"NYG\",\"birthdate\":\"881125200\",\"name\":\"Brunson, T.J.\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"rotowire_id\":\"14834\",\"height\":\"73\",\"sportsdata_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"team\":\"NYG\",\"cbs_id\":\"2252794\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32909\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15016\",\"draft_team\":\"BUF\",\"birthdate\":\"849243600\",\"name\":\"Jackson, Dane\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14549\",\"height\":\"71\",\"twitter_username\":\"Djack11_\",\"sportsdata_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"team\":\"BUF\",\"cbs_id\":\"2179418\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32910\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15017\",\"draft_team\":\"NOS\",\"birthdate\":\"850626000\",\"name\":\"Stevens, Tommy\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14527\",\"height\":\"77\",\"sportsdata_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"team\":\"NOS\",\"cbs_id\":\"2179839\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32911\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15018\",\"draft_team\":\"TBB\",\"birthdate\":\"853736400\",\"name\":\"Russell, Chapelle\",\"draft_pick\":\"27\",\"college\":\"Temple\",\"rotowire_id\":\"14755\",\"height\":\"73\",\"twitter_username\":\"DeuceRussell36\",\"sportsdata_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"team\":\"TBB\",\"cbs_id\":\"2186632\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32912\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15019\",\"draft_team\":\"GBP\",\"birthdate\":\"933138000\",\"name\":\"Garvin, Jonathan\",\"draft_pick\":\"28\",\"college\":\"Miami\",\"rotowire_id\":\"14365\",\"height\":\"76\",\"sportsdata_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"team\":\"GBP\",\"cbs_id\":\"2804100\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32913\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"186\",\"id\":\"15020\",\"draft_team\":\"TEN\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Chris\",\"draft_pick\":\"29\",\"college\":\"Marshall\",\"rotowire_id\":\"14835\",\"height\":\"72\",\"sportsdata_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"team\":\"TEN\",\"cbs_id\":\"3679\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32915\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15021\",\"draft_team\":\"TBB\",\"birthdate\":\"891493200\",\"name\":\"Calais, Raymond\",\"draft_pick\":\"31\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"14625\",\"height\":\"69\",\"twitter_username\":\"king_calais\",\"sportsdata_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"team\":\"TBB\",\"cbs_id\":\"2252175\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32916\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15022\",\"draft_team\":\"MIA\",\"birthdate\":\"861426000\",\"name\":\"Perry, Malcolm\",\"draft_pick\":\"32\",\"college\":\"Navy\",\"rotowire_id\":\"14504\",\"height\":\"69\",\"sportsdata_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"team\":\"MIA\",\"cbs_id\":\"2251971\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32917\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15023\",\"draft_team\":\"NYG\",\"birthdate\":\"864018000\",\"name\":\"Williamson, Chris\",\"draft_pick\":\"33\",\"college\":\"Minnesota\",\"rotowire_id\":\"14836\",\"height\":\"72\",\"sportsdata_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"team\":\"NYG\",\"cbs_id\":\"2180451\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32918\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15024\",\"draft_team\":\"LAR\",\"birthdate\":\"874645200\",\"name\":\"Sloman, Sam\",\"draft_pick\":\"34\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14837\",\"height\":\"68\",\"twitter_username\":\"ssloman118\",\"sportsdata_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"team\":\"LAR\",\"cbs_id\":\"2240109\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32919\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15025\",\"draft_team\":\"MIN\",\"birthdate\":\"860043600\",\"name\":\"Cole, Brian\",\"draft_pick\":\"35\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14620\",\"height\":\"74\",\"sportsdata_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"team\":\"MIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32921\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"15026\",\"draft_team\":\"SEA\",\"birthdate\":\"849157200\",\"name\":\"Sullivan, Stephen\",\"draft_pick\":\"37\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14570\",\"height\":\"77\",\"twitter_username\":\"SJS_10\",\"sportsdata_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"team\":\"SEA\",\"cbs_id\":\"2223251\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32922\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15027\",\"draft_team\":\"DEN\",\"birthdate\":\"874731600\",\"name\":\"Cleveland, Tyrie\",\"draft_pick\":\"38\",\"college\":\"Florida\",\"rotowire_id\":\"14621\",\"height\":\"74\",\"sportsdata_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"team\":\"DEN\",\"cbs_id\":\"2248604\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32923\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15028\",\"draft_team\":\"DEN\",\"birthdate\":\"837061200\",\"name\":\"Tuszka, Derrek\",\"draft_pick\":\"40\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14731\",\"height\":\"77\",\"sportsdata_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"team\":\"DEN\",\"cbs_id\":\"2190767\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32924\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15029\",\"draft_team\":\"NYG\",\"birthdate\":\"858142800\",\"name\":\"Crowder, Tae\",\"draft_pick\":\"41\",\"college\":\"Georgia\",\"rotowire_id\":\"14839\",\"height\":\"75\",\"twitter_username\":\"TaeCrowder\",\"sportsdata_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"team\":\"NYG\",\"cbs_id\":\"2180461\"},{\"draft_year\":\"2018\",\"birthdate\":\"826174800\",\"draft_team\":\"FA\",\"stats_id\":\"31744\",\"position\":\"LB\",\"name\":\"Gates, DeMarquis\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13942\",\"weight\":\"221\",\"sportsdata_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"id\":\"15030\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32358\",\"position\":\"PN\",\"name\":\"Fox, Jack\",\"college\":\"Rice\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13715\",\"jersey\":\"6\",\"weight\":\"224\",\"sportsdata_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"id\":\"15032\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"746773200\",\"draft_team\":\"FA\",\"stats_id\":\"32664\",\"position\":\"WR\",\"name\":\"Begelton, Reggie\",\"college\":\"Lamar\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14472\",\"weight\":\"200\",\"sportsdata_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"id\":\"15033\",\"team\":\"GBP\",\"cbs_id\":\"3157671\"},{\"draft_year\":\"2020\",\"birthdate\":\"890974800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33109\",\"position\":\"WR\",\"name\":\"Callaway, Marquez\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14556\",\"weight\":\"204\",\"id\":\"15034\",\"team\":\"NOS\",\"cbs_id\":\"2247505\"},{\"draft_year\":\"2018\",\"birthdate\":\"813819600\",\"draft_team\":\"FA\",\"stats_id\":\"31803\",\"position\":\"QB\",\"name\":\"Wolford, John\",\"college\":\"Wake Forest\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13403\",\"jersey\":\"9\",\"weight\":\"200\",\"sportsdata_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"id\":\"15035\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"843541200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Smith, J'mar\",\"college\":\"Louisiana Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14845\",\"weight\":\"218\",\"id\":\"15036\",\"team\":\"NEP\"},{\"draft_year\":\"2020\",\"birthdate\":\"876114000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32946\",\"position\":\"WR\",\"name\":\"Lipscomb, Kalija\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14640\",\"weight\":\"200\",\"sportsdata_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"id\":\"15037\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"birthdate\":\"850626000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33132\",\"position\":\"WR\",\"name\":\"Bayless, Omar\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14585\",\"weight\":\"207\",\"sportsdata_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"id\":\"15038\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"895726800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33095\",\"position\":\"WR\",\"name\":\"Parker, Aaron\",\"college\":\"Rhode Island\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14642\",\"weight\":\"191\",\"sportsdata_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"id\":\"15039\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Williams, Ty'Son\",\"college\":\"Brigham Young\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14404\",\"weight\":\"220\",\"id\":\"15040\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"872053200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33329\",\"position\":\"WR\",\"name\":\"Cager, Lawrence\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14597\",\"weight\":\"220\",\"sportsdata_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"id\":\"15041\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"birthdate\":\"875595600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33088\",\"position\":\"RB\",\"name\":\"Ward, Jonathan\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"15106\",\"weight\":\"202\",\"sportsdata_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"id\":\"15042\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"838702800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33017\",\"position\":\"WR\",\"name\":\"Hastings, Will\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14762\",\"weight\":\"174\",\"sportsdata_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"id\":\"15043\",\"team\":\"NEP\"},{\"draft_year\":\"2020\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33345\",\"position\":\"RB\",\"name\":\"Scarlett, Cameron\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14887\",\"weight\":\"216\",\"sportsdata_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"id\":\"15044\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"birthdate\":\"880002000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32994\",\"position\":\"TE\",\"name\":\"Breeland, Jacob\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14628\",\"weight\":\"250\",\"sportsdata_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"id\":\"15045\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852440400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33242\",\"position\":\"WR\",\"name\":\"Merritt, Kirk\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14861\",\"weight\":\"210\",\"sportsdata_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"id\":\"15046\",\"team\":\"MIA\"},{\"draft_year\":\"2016\",\"birthdate\":\"719730000\",\"draft_team\":\"FA\",\"stats_id\":\"29925\",\"position\":\"CB\",\"name\":\"Roberson, Tre\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"11506\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"id\":\"15047\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33330\",\"position\":\"WR\",\"name\":\"Campbell, George\",\"college\":\"West Virginia\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14944\",\"weight\":\"183\",\"sportsdata_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"id\":\"15048\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33108\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15049\",\"draft_team\":\"FA\",\"birthdate\":\"888469200\",\"name\":\"Bachie, Joe\",\"college\":\"Michigan State\",\"rotowire_id\":\"14735\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"team\":\"NOS\"},{\"draft_year\":\"2020\",\"birthdate\":\"890802000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33096\",\"position\":\"TE\",\"name\":\"Taumoepeau, Charlie\",\"college\":\"Portland State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14633\",\"weight\":\"245\",\"sportsdata_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"id\":\"15050\",\"team\":\"DAL\"}]},\"encoding\":\"utf-8\"}"), 
-    date = structure(1595815666, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0, namelookup = 0.001422, 
-    connect = 0.029503, pretransfer = 0.092838, starttransfer = 0.852559, 
-    total = 0.994909)), class = "response")
+    content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"1595837283\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"stats_id\":\"2\",\"draft_team\":\"BUF\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"twitter_username\":\"buffalobills\",\"id\":\"0501\",\"team\":\"BUF\",\"fleaflicker_id\":\"2331\",\"cbs_id\":\"409\"},{\"draft_year\":\"1970\",\"stats_id\":\"11\",\"draft_team\":\"IND\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"twitter_username\":\"nflcolts\",\"id\":\"0502\",\"team\":\"IND\",\"fleaflicker_id\":\"2341\",\"cbs_id\":\"402\"},{\"draft_year\":\"1970\",\"stats_id\":\"15\",\"draft_team\":\"MIA\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"twitter_username\":\"MiamiDolphins\",\"id\":\"0503\",\"team\":\"MIA\",\"fleaflicker_id\":\"2344\",\"cbs_id\":\"404\"},{\"draft_year\":\"1970\",\"stats_id\":\"17\",\"draft_team\":\"NEP\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"twitter_username\":\"patriots\",\"id\":\"0504\",\"team\":\"NEP\",\"fleaflicker_id\":\"2346\",\"cbs_id\":\"406\"},{\"draft_year\":\"1970\",\"stats_id\":\"20\",\"draft_team\":\"NYJ\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"nyjets\",\"id\":\"0505\",\"team\":\"NYJ\",\"fleaflicker_id\":\"2349\",\"cbs_id\":\"410\"},{\"draft_year\":\"1970\",\"stats_id\":\"4\",\"draft_team\":\"CIN\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"twitter_username\":\"Bengals\",\"id\":\"0506\",\"team\":\"CIN\",\"fleaflicker_id\":\"2334\",\"cbs_id\":\"426\"},{\"draft_year\":\"1970\",\"stats_id\":\"5\",\"draft_team\":\"CLE\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"twitter_username\":\"OfficialBrowns\",\"id\":\"0507\",\"team\":\"CLE\",\"fleaflicker_id\":\"2335\",\"cbs_id\":\"419\"},{\"draft_year\":\"1970\",\"stats_id\":\"10\",\"draft_team\":\"TEN\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"twitter_username\":\"tennesseetitans\",\"id\":\"0508\",\"team\":\"TEN\",\"fleaflicker_id\":\"2358\",\"cbs_id\":\"431\"},{\"draft_year\":\"1970\",\"stats_id\":\"30\",\"draft_team\":\"JAC\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"twitter_username\":\"jaguarsinsider\",\"id\":\"0509\",\"team\":\"JAC\",\"fleaflicker_id\":\"2342\",\"cbs_id\":\"422\"},{\"draft_year\":\"1970\",\"stats_id\":\"23\",\"draft_team\":\"PIT\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"twitter_username\":\"steelers\",\"id\":\"0510\",\"team\":\"PIT\",\"fleaflicker_id\":\"2352\",\"cbs_id\":\"413\"},{\"draft_year\":\"1970\",\"stats_id\":\"7\",\"draft_team\":\"DEN\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"twitter_username\":\"DenverBroncos\",\"id\":\"0511\",\"team\":\"DEN\",\"fleaflicker_id\":\"2337\",\"cbs_id\":\"428\"},{\"draft_year\":\"1970\",\"stats_id\":\"12\",\"draft_team\":\"KCC\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"twitter_username\":\"kcchiefs\",\"id\":\"0512\",\"team\":\"KCC\",\"fleaflicker_id\":\"2343\",\"cbs_id\":\"403\"},{\"draft_year\":\"1970\",\"stats_id\":\"13\",\"draft_team\":\"OAK\",\"position\":\"Def\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"twitter_username\":\"raiders\",\"id\":\"0513\",\"team\":\"LVR\",\"fleaflicker_id\":\"2350\",\"cbs_id\":\"424\"},{\"draft_year\":\"1970\",\"stats_id\":\"24\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"chargers\",\"id\":\"0514\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"stats_id\":\"26\",\"draft_team\":\"SEA\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"twitter_username\":\"seahawks\",\"id\":\"0515\",\"team\":\"SEA\",\"fleaflicker_id\":\"2354\",\"cbs_id\":\"416\"},{\"draft_year\":\"1970\",\"stats_id\":\"6\",\"draft_team\":\"DAL\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"twitter_username\":\"dallascowboys\",\"id\":\"0516\",\"team\":\"DAL\",\"fleaflicker_id\":\"2336\",\"cbs_id\":\"427\"},{\"draft_year\":\"1970\",\"stats_id\":\"19\",\"draft_team\":\"NYG\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"giants\",\"id\":\"0517\",\"team\":\"NYG\",\"fleaflicker_id\":\"2348\",\"cbs_id\":\"408\"},{\"draft_year\":\"1970\",\"stats_id\":\"21\",\"draft_team\":\"PHI\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"twitter_username\":\"Eagles\",\"id\":\"0518\",\"team\":\"PHI\",\"fleaflicker_id\":\"2351\",\"cbs_id\":\"411\"},{\"draft_year\":\"1970\",\"stats_id\":\"22\",\"draft_team\":\"ARI\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"twitter_username\":\"AZCardinals\",\"id\":\"0519\",\"team\":\"ARI\",\"fleaflicker_id\":\"2328\",\"cbs_id\":\"412\"},{\"draft_year\":\"1970\",\"stats_id\":\"28\",\"draft_team\":\"WAS\",\"position\":\"Def\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"twitter_username\":\"Redskins\",\"id\":\"0520\",\"team\":\"WAS\",\"fleaflicker_id\":\"2359\",\"cbs_id\":\"418\"},{\"draft_year\":\"1970\",\"stats_id\":\"3\",\"draft_team\":\"CHI\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"twitter_username\":\"ChicagoBears\",\"id\":\"0521\",\"team\":\"CHI\",\"fleaflicker_id\":\"2333\",\"cbs_id\":\"421\"},{\"draft_year\":\"1970\",\"stats_id\":\"8\",\"draft_team\":\"DET\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"twitter_username\":\"detroitlionsnfl\",\"id\":\"0522\",\"team\":\"DET\",\"fleaflicker_id\":\"2338\",\"cbs_id\":\"429\"},{\"draft_year\":\"1970\",\"stats_id\":\"9\",\"draft_team\":\"GBP\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"packers\",\"id\":\"0523\",\"team\":\"GBP\",\"fleaflicker_id\":\"2339\",\"cbs_id\":\"430\"},{\"draft_year\":\"1970\",\"stats_id\":\"16\",\"draft_team\":\"MIN\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"twitter_username\":\"Vikings\",\"id\":\"0524\",\"team\":\"MIN\",\"fleaflicker_id\":\"2345\",\"cbs_id\":\"405\"},{\"draft_year\":\"1970\",\"stats_id\":\"27\",\"draft_team\":\"TBB\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"TBBuccaneers\",\"id\":\"0525\",\"team\":\"TBB\",\"fleaflicker_id\":\"2357\",\"cbs_id\":\"417\"},{\"draft_year\":\"1970\",\"stats_id\":\"1\",\"draft_team\":\"ATL\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"twitter_username\":\"AtlantaFalcons\",\"id\":\"0526\",\"team\":\"ATL\",\"fleaflicker_id\":\"2329\",\"cbs_id\":\"401\"},{\"draft_year\":\"1970\",\"stats_id\":\"29\",\"draft_team\":\"CAR\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"twitter_username\":\"Panthers\",\"id\":\"0527\",\"team\":\"CAR\",\"fleaflicker_id\":\"2332\",\"cbs_id\":\"420\"},{\"draft_year\":\"1970\",\"stats_id\":\"14\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"STLouisRams\",\"id\":\"0528\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"stats_id\":\"18\",\"draft_team\":\"NOS\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"twitter_username\":\"saints\",\"id\":\"0529\",\"team\":\"NOS\",\"fleaflicker_id\":\"2347\",\"cbs_id\":\"407\"},{\"draft_year\":\"1970\",\"stats_id\":\"25\",\"draft_team\":\"SFO\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"twitter_username\":\"49ers\",\"id\":\"0530\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"stats_id\":\"33\",\"draft_team\":\"BAL\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"twitter_username\":\"ravens\",\"id\":\"0531\",\"team\":\"BAL\",\"fleaflicker_id\":\"2330\",\"cbs_id\":\"425\"},{\"draft_year\":\"1970\",\"stats_id\":\"34\",\"draft_team\":\"HOU\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"twitter_username\":\"houstontexans\",\"id\":\"0532\",\"team\":\"HOU\",\"fleaflicker_id\":\"2340\",\"cbs_id\":\"432\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1994\",\"stats_id\":\"39685\",\"draft_team\":\"NYJ\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"twitter_username\":\"PeteCarroll\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"draft_team\":\"FA\",\"birthdate\":\"94366800\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"height\":\"72\",\"rotowire_id\":\"395\",\"jersey\":\"4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"twitter_username\":\"aVinatieri4\",\"team\":\"FA\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"IND\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"TBB\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"FA\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"FA\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"FA\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"LVR\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"FA\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"IND\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"FA\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"WAS\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"20\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"NYJ\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"2\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"FA\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"FA\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"FA\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"24\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"TEN\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"FA\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"FA\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"FA\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"FA\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"twitter_username\":\"CoachTomlin\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"26\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"WAS\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"FA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"CHI\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"SEA\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"FA\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"FA\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"fleaflicker_id\":\"4848\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"FA\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"2\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"FA\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"KCC\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"CB\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"FA\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"BAL\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"NYJ\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"FA\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"fleaflicker_id\":\"5372\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"FA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"FA\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"BUF\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"FA\",\"cbs_id\":\"519042\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"FA\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"NOS\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"FA\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"FA\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"FA\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"4\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"FA\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"9\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"CAR\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"DET\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"NEP\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"FA\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"CAR\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"DAL\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"FA\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"CIN\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"FA\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"BAL\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"FA\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"FA\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"NYG\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"TBB\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"98\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"LAC\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"FA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"FA\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"10\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"NOS\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"8\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"CHI\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DE\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"72\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"JAC\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"FA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"FA*\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"fleaflicker_id\":\"6799\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"FA\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"FA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"FA\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"FA\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"FA\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"NYJ\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"FA\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"42\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"CLE\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"FA\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"twitter_username\":\"RiverboatRonHC\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"99\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"CLE\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"LVR\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"FA\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"LB\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"58\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"CHI\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"NEP\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"aldonsmith/2495487\",\"rotoworld_id\":\"6477\",\"stats_id\":\"24794\",\"position\":\"DE\",\"stats_global_id\":\"463434\",\"espn_id\":\"13988\",\"weight\":\"265\",\"id\":\"10274\",\"birthdate\":\"628405200\",\"draft_team\":\"SFO\",\"name\":\"Smith, Aldon\",\"draft_pick\":\"7\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7446\",\"jersey\":\"99\",\"twitter_username\":\"AldonSmith\",\"sportsdata_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"team\":\"DAL\",\"cbs_id\":\"1630791\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"99\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"DE\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"FA\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"HOU\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"DAL\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"FA\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"FA\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"FA\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"FA\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"DEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"FA\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"80\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"FA\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"34\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"BUF\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"FA\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"NYG\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"FA\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"FA\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"FA\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"FA\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"51\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"FA\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"DAL\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"FA\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"BUF\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"LAC\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"CIN\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"7\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"CHI\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"FA\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"FA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"NEP\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"FA\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"12\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"SFO\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"fleaflicker_id\":\"8577\",\"birthdate\":\"609570000\",\"draft_team\":\"SDC\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"FA\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"DAL\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"55\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"SEA\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"FA\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"FA\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"27\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"FA\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"26\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"FA\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"fleaflicker_id\":\"8472\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"BAL\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"FA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"32\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"FA\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"FA\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"FA\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"LVR\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"FA\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"FA\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"96\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"FA\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"59\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"CAR\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"FA\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"24\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"BUF\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DE\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"95\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"TEN\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"4\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"DAL\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"FA\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"28\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NYG\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"NYG\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"LVR\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"8\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"CLE\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"FA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"10\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"FA\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"FA\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"FA\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"39\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"CHI\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"FA\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"twitter_username\":\"BruceArians\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"TEN\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"fleaflicker_id\":\"9009\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"FA\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"BUF\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"FA\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"NYJ\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"7\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"JAC\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"FA\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"25\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"JAC\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"FA\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"NYJ\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"FA\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"10\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"FA\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"10\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"ARI\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"FA\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"11\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"PHI\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"86\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"FA\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"85\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"JAC\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"83\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"NYG\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"97\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"FA\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"FA\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"NOS\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DE\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"LVR\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"FA\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"FA\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"77\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"CHI\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"FA\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"FA\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"51\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"CHI\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"47\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"NOS\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"21\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"DET\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"29\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"IND\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"26\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"FA\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"8\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"SFO\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"FA\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"FA\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"FA\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"23\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"PHI\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"8\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"DET\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"FA\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"21\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"DET\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"FA\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"53\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"BUF\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"SEA\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"SEA\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DEN\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"85\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DT\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"FA\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"DET\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"S\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"FA\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"88\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CHI\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"FA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"FA\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"ATL\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"FA\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"SEA\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"FA\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"ATL\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"23\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"PHI\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"FA\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"DEN\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"FA\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"FA\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"NYJ\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"0\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"JAC\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"LVR\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"NEP\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"FA\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"HOU\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"FA\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"HOU\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"CAR\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"FA\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"LVR\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"WAS\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"34\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"SEA\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"5\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"FA*\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"FA\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"11\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"NEP\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"12\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"HOU\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"FA\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"FA\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"FA\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"PIT\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"IND\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"IND\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"FA*\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"JAC\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"93\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"HOU\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"PIT\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"PIT\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"MIA\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"51\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"21\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"FA\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"WAS\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"DAL\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"CB\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"LVR\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"WAS\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"2\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"ATL\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"S\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"GBP\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"FA\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"FA\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"28\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"82\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"WAS\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"HOU\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"78\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"LB\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"91\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"JAC\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"FA\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"FA\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DT\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"FA\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"NYJ\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"CB\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"57\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"WAS\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"LVR\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"96\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"FA\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"NYJ\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"CAR\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"ARI\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"NYJ\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"NYJ\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"CLE\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, T.J.\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"IND\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"91\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"NEP\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DE\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"FA\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"FA\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"FA\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"5\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"FA\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"16\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"FA\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chandlercatanzaro/2550325\",\"rotoworld_id\":\"10045\",\"stats_id\":\"28103\",\"position\":\"PK\",\"stats_global_id\":\"522233\",\"espn_id\":\"16976\",\"weight\":\"200\",\"id\":\"11960\",\"draft_team\":\"FA\",\"birthdate\":\"667544400\",\"name\":\"Catanzaro, Chandler\",\"college\":\"Clemson\",\"rotowire_id\":\"9845\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"team\":\"NYG\",\"cbs_id\":\"2130276\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"TEN\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"FA\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"FA\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DT\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"CAR\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"FA\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"FA\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"0\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"DEN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"NEP\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"FA\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"FA\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"FA\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"3\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"NOS\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"LVR\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"ATL\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"DEN\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"29\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"27\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"FA\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"HOU\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"FA\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"13\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"LVR\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"DAL\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"FA\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"BUF\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"13\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"SEA\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"NYJ\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"17\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"GBP\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"83\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"FA\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"DEN\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"FA\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"FA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"DAL\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"DE\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"ATL\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"NOS\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"DE\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"WAS\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"92\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"DET\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"FA\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DE\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"ARI\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"LB\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"TEN\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"FA\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"SFO\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, A.J.\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"FA\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"FA\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"22\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"CIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"CLE\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"ATL\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NOS\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"LVR\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"31\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"MIA\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"LVR\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"S\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"21\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"WAS\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"NYG\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"97\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"HOU\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"FA\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"TEN\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DT\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"JAC\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"NOS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"FA\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"DET\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"28\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"NOS\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DE\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"95\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"DEN\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"FA\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10605\",\"stats_id\":\"28620\",\"position\":\"LB\",\"stats_global_id\":\"845648\",\"espn_id\":\"3137087\",\"weight\":\"245\",\"id\":\"12369\",\"birthdate\":\"698821200\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Edmond\",\"draft_pick\":\"15\",\"college\":\"Newberry\",\"rotowire_id\":\"10497\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"AAP_30\",\"sportsdata_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"team\":\"ATL\",\"cbs_id\":\"2174218\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"FA\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"27\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"DET\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"FA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"FA\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"LVR\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"HOU\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"FA\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"CAR\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"GBP\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"LVR\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"SEA\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"NEP\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"CAR\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"ATL\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"51\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NEP\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"TEN\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"LAC\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"0\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"PIT\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"FA\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"FA\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"6\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DEN\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"FA\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"FA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"LVR\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"NYJ\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"MIA\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"FA\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"FA\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"WAS\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"WAS\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"ATL\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"NYG\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"NYJ\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"81\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"MIN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"12\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"CAR\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"DET\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"FA\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"CIN\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"CLE\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"DEN\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"MIA\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"IND\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"DE\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"MIA\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"MIN\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"LAR\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CLE\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"NYG\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"DET\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"FA\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"FA\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"CIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"WAS\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"CAR\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"S\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"CLE\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"CIN\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"27\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"DET\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"LAR\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"CHI\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"BUF\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"TEN\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DE\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"51\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"WAS\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"FA\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"NYG\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"FA\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"LVR\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"LVR\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"S\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"JAC\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"NYJ\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"ARI\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"DAL\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"LAC\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"NYG\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"79\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PHI\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"53\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"JAC\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"96\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"IND\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"HOU\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"CLE\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"LVR\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ARI\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"64\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"S\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CAR\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"CB\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"TBB\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"SFO\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"NYG\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"FA\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"99\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"BUF\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DT\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"36\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"CIN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"CHI\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"CIN\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"FA\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"SDC\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"PHI\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"CLE\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"CHI\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"FA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"FA\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"draft_team\":\"TBB\",\"birthdate\":\"751611600\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"NEP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"34\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"PIT\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"16\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"CHI\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"MIA\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"DAL\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"MIA\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"52\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"MIA\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"IND\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"34\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"PHI\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"BUF\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"CAR\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"MIA\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"BUF\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"SFO\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"KCC\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"FA\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"FA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"DAL\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"LVR\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"LVR\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"FA\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"NOS\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"FA\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"CAR\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"FA\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"CHI\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"93\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"DEN\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"MIN\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"LVR\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"FA\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"FA\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"KCC\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LVR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"SFO\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"FA\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"FA\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"NYJ\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"IND\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"FA\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"NYG\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"FA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"FA\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"WAS\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"FA\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"JAC\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"BUF\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"IND\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"NYG\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"LVR\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"JAC\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"CIN\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"FA\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"FA\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"FA\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"KCC\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"TBB\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"IND\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"MIA\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"PIT\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"PIT\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"NYJ\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"FA\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"LVR\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"KCC\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"HOU\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"TBB\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"MIA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"KCC\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"90\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"ATL\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"ATL\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"FA\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"75\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"NYJ\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DT\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DT\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"93\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"PIT\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"GBP\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"TBB\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"MIA\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"PHI\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"SEA\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"LAC\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"NYJ\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"PHI\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"FA\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"FA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"87\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"MIA\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"NYJ\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"FA\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"JAC\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"NEP\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"MIA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"IND\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"PHI\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"FA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"FA\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"MIN\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"FA\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"CIN\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"CB\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"S\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"NYJ\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"WR\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"FA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"LVR\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"48\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"CHI\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DE\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"FA\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"BUF\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DE\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"HOU\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"MIA\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"DET\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DE\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"GBP\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"NOS\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"DET\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"MIA\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"KCC\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"RB\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"NOS\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"FA\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"FA\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"CLE\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"PIT\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"MIN\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"FA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, P.J.\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"CAR\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"LVR\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DE\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"ARI\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"FA\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"FA\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"ATL\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"FA\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"CLE\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"FA\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"FA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"NYJ\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"NYJ\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"S\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"45\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"GBP\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"FA\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"DET\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"14\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"BUF\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"CLE\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"CHI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"LB\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"TEN\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"MIA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"PIT\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"NYJ\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"PHI\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"WAS\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"DET\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"LAR\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"MIA\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"SFO\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"FA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"BUF\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"LVR\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"BUF\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"WAS\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"CLE\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"BAL\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"WAS\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"FA\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"757573200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"ATL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"LVR\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"LVR\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"36\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"JAC\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"LVR\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"97\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"KCC\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"TBB\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"LVR\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"CLE\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"47\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"CB\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"NYG\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"DEN\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"LVR\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"CB\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SFO\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"37\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"DEN\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"CIN\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"CLE\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"DET\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"JAC\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"LB\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"CB\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"34\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"WAS\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"TE\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"ARI\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"FA\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DT\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"FA\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"49\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"NYJ\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"HOU\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"FA\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"ATL\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"HOU\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"SFO\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"CAR\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"birthdate\":\"698907600\",\"draft_team\":\"FA\",\"stats_id\":\"30711\",\"position\":\"PN\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"11829\",\"weight\":\"194\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"id\":\"13848\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"FA\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"6\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"ATL\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"FA\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"BUF\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"JAC\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"WAS\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"CAR\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"BUF\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"TEN\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"FA\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"NYJ\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"CIN\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"PHI\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13507\",\"stats_id\":\"31314\",\"position\":\"CB\",\"stats_global_id\":\"822378\",\"weight\":\"189\",\"id\":\"13928\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Nichols, Deatrick\",\"college\":\"South Florida\",\"rotowire_id\":\"12758\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"team\":\"NOS\",\"cbs_id\":\"2926507\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"KCC\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"MIA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"NOS\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"CHI\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"NYG\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"FA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"TEN\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"MIA\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DE\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"CLE\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"NYG\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"BUF\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"DET\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"DAL\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"LVR\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"GBP\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"FA\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"HOU\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"40\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"23\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"CIN\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"NYJ\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"CAR\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"38\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"DET\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"GBP\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"FA\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"ARI\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"FA\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"CIN\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"FA\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"NOS\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"PIT\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"MIA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"89\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"LVR\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"MIN\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"birthdate\":\"873608400\",\"draft_team\":\"FA\",\"stats_id\":\"32469\",\"position\":\"WR\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"stats_global_id\":\"866112\",\"height\":\"72\",\"rotowire_id\":\"13877\",\"jersey\":\"8\",\"weight\":\"205\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"id\":\"14131\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"FA\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"ARI\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"FA\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"WAS\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"stats_id\":\"31858\",\"position\":\"DE\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"LVR\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"DAL\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"97\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"PHI\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"stats_id\":\"31835\",\"position\":\"DE\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"stats_id\":\"31903\",\"position\":\"DE\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"GBP\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"BAL\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"FA\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"TEN\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"NYG\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"stats_id\":\"31940\",\"position\":\"S\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"LVR\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"LVR\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"draft_team\":\"FA\",\"stats_id\":\"32368\",\"position\":\"RB\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"stats_global_id\":\"868331\",\"height\":\"72\",\"rotowire_id\":\"13549\",\"jersey\":\"30\",\"weight\":\"205\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"id\":\"14192\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"birthdate\":\"674283600\",\"draft_team\":\"FA\",\"stats_id\":\"31822\",\"position\":\"RB\",\"name\":\"Wade, Christian\",\"stats_global_id\":\"1164428\",\"height\":\"67\",\"rotowire_id\":\"13930\",\"jersey\":\"45\",\"weight\":\"185\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"id\":\"14194\",\"team\":\"BUF\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"draft_team\":\"GBP\",\"draft_pick\":\"21\",\"position\":\"S\",\"name\":\"Savage, Darnell\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13810\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"id\":\"14197\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"13514\",\"height\":\"75\",\"jersey\":\"79\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"LVR\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"LVR\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"LVR\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"NYG\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"TBB\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"BUF\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"DEN\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"DET\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"stats_id\":\"31991\",\"position\":\"DT\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"2\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CLE\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"FA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"NOS\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYG\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"DET\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"DEN\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"CHI\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"IND\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"FA\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"PIT\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"SEA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"JAC\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"stats_id\":\"32074\",\"position\":\"DT\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"MIA\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"TBB\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"NOS\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"IND\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"1\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"LVR\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"SEA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"PIT\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"FA\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"FA\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"DET\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"birthdate\":\"787208400\",\"draft_team\":\"FA\",\"stats_id\":\"31831\",\"position\":\"PK\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"stats_global_id\":\"744596\",\"height\":\"72\",\"rotowire_id\":\"13943\",\"weight\":\"189\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"id\":\"14335\",\"team\":\"TBB\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"DAL\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"birthdate\":\"816325200\",\"draft_team\":\"FA\",\"stats_id\":\"32238\",\"position\":\"RB\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"stats_global_id\":\"836057\",\"height\":\"72\",\"rotowire_id\":\"14082\",\"jersey\":\"23\",\"weight\":\"226\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"id\":\"14338\",\"team\":\"NYG\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"birthdate\":\"755067600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"12121\",\"jersey\":\"13\",\"weight\":\"178\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"id\":\"14339\",\"team\":\"TBB\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"draft_team\":\"FA\",\"stats_id\":\"32456\",\"position\":\"TE\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"stats_global_id\":\"875649\",\"height\":\"80\",\"rotowire_id\":\"13602\",\"jersey\":\"46\",\"weight\":\"240\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"id\":\"14341\",\"team\":\"LAC\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"draft_team\":\"FA\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"CIN\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"CAR\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"birthdate\":\"789022800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"stats_global_id\":\"744162\",\"height\":\"72\",\"rotowire_id\":\"12734\",\"jersey\":\"46\",\"weight\":\"230\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"id\":\"14350\",\"team\":\"DAL\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"MIN\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"birthdate\":\"770101200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"stats_global_id\":\"746191\",\"height\":\"74\",\"rotowire_id\":\"12539\",\"jersey\":\"15\",\"weight\":\"200\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"id\":\"14365\",\"team\":\"LAC\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"82\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"CIN\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"birthdate\":\"822459600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"stats_global_id\":\"832993\",\"height\":\"76\",\"rotowire_id\":\"13237\",\"jersey\":\"76\",\"weight\":\"295\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"id\":\"14377\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32220\",\"position\":\"LB\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"stats_global_id\":\"821593\",\"height\":\"74\",\"rotowire_id\":\"13907\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"id\":\"14384\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"stats_global_id\":\"699216\",\"height\":\"70\",\"rotowire_id\":\"11374\",\"jersey\":\"42\",\"weight\":\"200\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"id\":\"14394\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"birthdate\":\"818917200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820730\",\"height\":\"73\",\"rotowire_id\":\"13342\",\"jersey\":\"38\",\"weight\":\"210\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"id\":\"14398\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"FA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"LVR\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"birthdate\":\"811314000\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"stats_global_id\":\"820764\",\"height\":\"74\",\"rotowire_id\":\"13187\",\"jersey\":\"45\",\"weight\":\"255\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"id\":\"14421\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"birthdate\":\"841294800\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"stats_global_id\":\"837722\",\"height\":\"71\",\"rotowire_id\":\"12827\",\"jersey\":\"39\",\"weight\":\"200\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"id\":\"14434\",\"team\":\"WAS\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"college\":\"Louisville\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"JAC\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"FA\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"786690000\",\"draft_team\":\"FA\",\"stats_id\":\"32559\",\"position\":\"RB\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"stats_global_id\":\"835777\",\"height\":\"69\",\"rotowire_id\":\"14237\",\"jersey\":\"46\",\"weight\":\"179\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"id\":\"14465\",\"team\":\"MIN\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"birthdate\":\"840862800\",\"draft_team\":\"FA\",\"stats_id\":\"32556\",\"position\":\"WR\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"stats_global_id\":\"838301\",\"height\":\"75\",\"rotowire_id\":\"14236\",\"jersey\":\"81\",\"weight\":\"205\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"id\":\"14481\",\"team\":\"DAL\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"birthdate\":\"848206800\",\"draft_team\":\"FA\",\"stats_id\":\"32283\",\"position\":\"WR\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"stats_global_id\":\"1063397\",\"height\":\"73\",\"rotowire_id\":\"14129\",\"jersey\":\"83\",\"weight\":\"201\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"id\":\"14486\",\"team\":\"CLE\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"birthdate\":\"850366800\",\"draft_team\":\"FA\",\"stats_id\":\"32273\",\"position\":\"TE\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"stats_global_id\":\"881697\",\"height\":\"76\",\"rotowire_id\":\"14131\",\"jersey\":\"89\",\"weight\":\"240\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"id\":\"14488\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"birthdate\":\"867992400\",\"draft_team\":\"FA\",\"stats_id\":\"32277\",\"position\":\"PN\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"stats_global_id\":\"891880\",\"height\":\"73\",\"rotowire_id\":\"14147\",\"jersey\":\"7\",\"weight\":\"207\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"id\":\"14489\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"809586000\",\"draft_team\":\"FA\",\"stats_id\":\"32205\",\"position\":\"LB\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"stats_global_id\":\"821248\",\"height\":\"75\",\"rotowire_id\":\"14068\",\"jersey\":\"57\",\"weight\":\"245\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"id\":\"14495\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"birthdate\":\"853390800\",\"draft_team\":\"FA\",\"stats_id\":\"32189\",\"position\":\"WR\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"stats_global_id\":\"1165782\",\"height\":\"72\",\"rotowire_id\":\"13919\",\"jersey\":\"2\",\"weight\":\"180\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"id\":\"14499\",\"team\":\"DEN\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"819262800\",\"draft_team\":\"FA\",\"stats_id\":\"32266\",\"position\":\"LB\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820700\",\"height\":\"72\",\"rotowire_id\":\"14103\",\"jersey\":\"40\",\"weight\":\"228\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"id\":\"14509\",\"team\":\"GBP\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"birthdate\":\"813992400\",\"draft_team\":\"FA\",\"stats_id\":\"32152\",\"position\":\"QB\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"stats_global_id\":\"945086\",\"height\":\"76\",\"rotowire_id\":\"14040\",\"jersey\":\"3\",\"weight\":\"221\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"id\":\"14510\",\"team\":\"FA\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2019\",\"birthdate\":\"900738000\",\"draft_team\":\"FA\",\"stats_id\":\"32623\",\"position\":\"S\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"stats_global_id\":\"910649\",\"height\":\"72\",\"rotowire_id\":\"14330\",\"jersey\":\"38\",\"weight\":\"195\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"id\":\"14518\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"birthdate\":\"845355600\",\"draft_team\":\"FA\",\"stats_id\":\"32151\",\"position\":\"LB\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"stats_global_id\":\"923359\",\"height\":\"75\",\"rotowire_id\":\"14257\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"id\":\"14519\",\"team\":\"CAR\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"birthdate\":\"867387600\",\"draft_team\":\"FA\",\"stats_id\":\"32509\",\"position\":\"DT\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"stats_global_id\":\"867748\",\"height\":\"75\",\"rotowire_id\":\"13864\",\"jersey\":\"67\",\"weight\":\"305\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"id\":\"14531\",\"team\":\"FA\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"birthdate\":\"803883600\",\"draft_team\":\"FA\",\"stats_id\":\"32547\",\"position\":\"WR\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"stats_global_id\":\"1166990\",\"height\":\"74\",\"rotowire_id\":\"13999\",\"jersey\":\"89\",\"weight\":\"213\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"id\":\"14545\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"birthdate\":\"822718800\",\"draft_team\":\"FA\",\"stats_id\":\"32137\",\"position\":\"WR\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"stats_global_id\":\"828656\",\"height\":\"70\",\"rotowire_id\":\"14012\",\"jersey\":\"14\",\"weight\":\"180\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"id\":\"14549\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"birthdate\":\"836197200\",\"draft_team\":\"FA\",\"stats_id\":\"32140\",\"position\":\"RB\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"835845\",\"height\":\"72\",\"rotowire_id\":\"13998\",\"jersey\":\"48\",\"weight\":\"233\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"id\":\"14552\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"birthdate\":\"848811600\",\"draft_team\":\"FA\",\"stats_id\":\"32143\",\"position\":\"WR\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"stats_global_id\":\"1050926\",\"height\":\"73\",\"rotowire_id\":\"14049\",\"jersey\":\"85\",\"weight\":\"166\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"id\":\"14554\",\"team\":\"MIN\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"birthdate\":\"848984400\",\"draft_team\":\"FA\",\"stats_id\":\"32612\",\"position\":\"WR\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"stats_global_id\":\"1168410\",\"height\":\"72\",\"rotowire_id\":\"14318\",\"jersey\":\"9\",\"weight\":\"190\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"id\":\"14555\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"birthdate\":\"881211600\",\"draft_team\":\"FA\",\"stats_id\":\"32398\",\"position\":\"WR\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"stats_global_id\":\"1166545\",\"height\":\"66\",\"rotowire_id\":\"14191\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"id\":\"14558\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"birthdate\":\"855378000\",\"draft_team\":\"FA\",\"stats_id\":\"32492\",\"position\":\"LB\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"stats_global_id\":\"880029\",\"height\":\"77\",\"rotowire_id\":\"13859\",\"jersey\":\"58\",\"weight\":\"260\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"id\":\"14559\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"stats_id\":\"32243\",\"position\":\"WR\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"stats_global_id\":\"838670\",\"height\":\"72\",\"rotowire_id\":\"13815\",\"jersey\":\"80\",\"weight\":\"191\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"id\":\"14560\",\"team\":\"CHI\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"82\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"805698000\",\"draft_team\":\"FA\",\"stats_id\":\"32548\",\"position\":\"PN\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"stats_global_id\":\"839067\",\"height\":\"75\",\"rotowire_id\":\"14265\",\"jersey\":\"6\",\"weight\":\"219\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"id\":\"14568\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"852181200\",\"draft_team\":\"FA\",\"stats_id\":\"32589\",\"position\":\"S\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"stats_global_id\":\"865648\",\"height\":\"71\",\"rotowire_id\":\"14297\",\"jersey\":\"32\",\"weight\":\"195\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"id\":\"14579\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"birthdate\":\"832568400\",\"draft_team\":\"FA\",\"stats_id\":\"32222\",\"position\":\"LB\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"stats_global_id\":\"828111\",\"height\":\"74\",\"rotowire_id\":\"14081\",\"jersey\":\"54\",\"weight\":\"240\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"id\":\"14584\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"birthdate\":\"870670800\",\"draft_team\":\"FA\",\"stats_id\":\"32318\",\"position\":\"LB\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"866464\",\"height\":\"74\",\"rotowire_id\":\"13829\",\"jersey\":\"46\",\"weight\":\"228\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"id\":\"14590\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"birthdate\":\"830408400\",\"draft_team\":\"FA\",\"stats_id\":\"32364\",\"position\":\"TE\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"stats_global_id\":\"832213\",\"height\":\"75\",\"rotowire_id\":\"14184\",\"jersey\":\"40\",\"weight\":\"225\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"id\":\"14591\",\"team\":\"KCC\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"birthdate\":\"869634000\",\"draft_team\":\"FA\",\"stats_id\":\"32123\",\"position\":\"WR\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"stats_global_id\":\"883976\",\"height\":\"68\",\"rotowire_id\":\"13833\",\"jersey\":\"17\",\"weight\":\"190\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"id\":\"14592\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32461\",\"position\":\"DT\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"835485\",\"height\":\"76\",\"rotowire_id\":\"14213\",\"jersey\":\"62\",\"weight\":\"285\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"id\":\"14595\",\"team\":\"DET\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"birthdate\":\"829112400\",\"draft_team\":\"FA\",\"stats_id\":\"32384\",\"position\":\"PK\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"stats_global_id\":\"836963\",\"height\":\"71\",\"rotowire_id\":\"14172\",\"jersey\":\"4\",\"weight\":\"213\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"id\":\"14600\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"birthdate\":\"808635600\",\"draft_team\":\"FA\",\"stats_id\":\"32439\",\"position\":\"RB\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"stats_global_id\":\"835694\",\"height\":\"72\",\"rotowire_id\":\"13913\",\"jersey\":\"42\",\"weight\":\"205\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"id\":\"14612\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"birthdate\":\"859784400\",\"draft_team\":\"FA\",\"stats_id\":\"32187\",\"position\":\"WR\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"stats_global_id\":\"877596\",\"height\":\"70\",\"rotowire_id\":\"14055\",\"jersey\":\"15\",\"weight\":\"190\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"id\":\"14613\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"birthdate\":\"829285200\",\"draft_team\":\"FA\",\"stats_id\":\"32581\",\"position\":\"QB\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"stats_global_id\":\"837040\",\"height\":\"73\",\"rotowire_id\":\"13566\",\"jersey\":\"6\",\"weight\":\"210\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"id\":\"14618\",\"team\":\"PIT\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"881730000\",\"draft_team\":\"FA\",\"stats_id\":\"32642\",\"position\":\"QB\",\"name\":\"Ta'amu, Jordan\",\"college\":\"Mississippi\",\"stats_global_id\":\"974470\",\"height\":\"75\",\"rotowire_id\":\"13629\",\"jersey\":\"6\",\"weight\":\"221\",\"sportsdata_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"id\":\"14622\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"817448400\",\"draft_team\":\"FA\",\"stats_id\":\"32386\",\"position\":\"PN\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"stats_global_id\":\"866061\",\"height\":\"76\",\"rotowire_id\":\"14171\",\"jersey\":\"6\",\"weight\":\"220\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"id\":\"14630\",\"team\":\"LVR\"},{\"draft_year\":\"2019\",\"birthdate\":\"857192400\",\"draft_team\":\"FA\",\"stats_id\":\"32321\",\"position\":\"DT\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"stats_global_id\":\"883319\",\"height\":\"73\",\"rotowire_id\":\"13519\",\"jersey\":\"60\",\"weight\":\"285\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"id\":\"14652\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"birthdate\":\"827211600\",\"draft_team\":\"FA\",\"stats_id\":\"32425\",\"position\":\"DT\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"stats_global_id\":\"834396\",\"height\":\"73\",\"rotowire_id\":\"14204\",\"jersey\":\"79\",\"weight\":\"299\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"id\":\"14653\",\"team\":\"TEN\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"stats_id\":\"32295\",\"position\":\"TE\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"stats_global_id\":\"884045\",\"height\":\"76\",\"rotowire_id\":\"14094\",\"jersey\":\"86\",\"weight\":\"245\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"id\":\"14654\",\"team\":\"WAS\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32241\",\"position\":\"LB\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"881829\",\"height\":\"73\",\"rotowire_id\":\"13487\",\"jersey\":\"48\",\"weight\":\"235\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"id\":\"14660\",\"team\":\"NYG\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"38\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"LVR\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"27\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"95\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"LAR\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Wiltz, Jomal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"74\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"birthdate\":\"873349200\",\"draft_team\":\"FA\",\"stats_id\":\"32155\",\"position\":\"DT\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14044\",\"jersey\":\"72\",\"weight\":\"320\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"id\":\"14677\",\"team\":\"ARI\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"79\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"832395600\",\"draft_team\":\"FA\",\"stats_id\":\"32304\",\"position\":\"LB\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13539\",\"jersey\":\"50\",\"weight\":\"240\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"id\":\"14682\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"ARI\"},{\"draft_year\":\"2019\",\"birthdate\":\"863413200\",\"draft_team\":\"FA\",\"stats_id\":\"32552\",\"position\":\"S\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14267\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"id\":\"14702\",\"team\":\"LAC\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"71\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"birthdate\":\"829026000\",\"draft_team\":\"FA\",\"stats_id\":\"32417\",\"position\":\"PK\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14254\",\"jersey\":\"7\",\"weight\":\"190\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"id\":\"14717\",\"team\":\"IND\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"47\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"DEN\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"PHI\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32671\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14777\",\"draft_team\":\"CIN\",\"birthdate\":\"850194000\",\"name\":\"Burrow, Joe\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"14442\",\"height\":\"76\",\"twitter_username\":\"Joe_Burrow10\",\"sportsdata_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"team\":\"CIN\",\"cbs_id\":\"2179798\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32675\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14778\",\"draft_team\":\"MIA\",\"birthdate\":\"888814800\",\"name\":\"Tagovailoa, Tua\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"14465\",\"height\":\"73\",\"twitter_username\":\"Tuaamann\",\"sportsdata_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"team\":\"MIA\",\"cbs_id\":\"2741209\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32676\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"237\",\"id\":\"14779\",\"draft_team\":\"LAC\",\"birthdate\":\"889506000\",\"name\":\"Herbert, Justin\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"rotowire_id\":\"14446\",\"height\":\"78\",\"twitter_username\":\"Justin10Herbert\",\"sportsdata_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"team\":\"LAC\",\"cbs_id\":\"2221960\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32792\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14780\",\"draft_team\":\"IND\",\"birthdate\":\"879742800\",\"name\":\"Eason, Jacob\",\"draft_pick\":\"16\",\"college\":\"Washington\",\"rotowire_id\":\"14401\",\"height\":\"78\",\"twitter_username\":\"skinnyqb10\",\"sportsdata_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"team\":\"IND\",\"cbs_id\":\"2240210\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32837\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"222\",\"id\":\"14781\",\"draft_team\":\"BUF\",\"birthdate\":\"901774800\",\"name\":\"Fromm, Jake\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"rotowire_id\":\"14486\",\"height\":\"74\",\"twitter_username\":\"FrommJake\",\"sportsdata_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"team\":\"BUF\",\"cbs_id\":\"2803326\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32696\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14782\",\"draft_team\":\"GBP\",\"birthdate\":\"909982800\",\"name\":\"Love, Jordan\",\"draft_pick\":\"26\",\"college\":\"Utah State\",\"rotowire_id\":\"14371\",\"height\":\"76\",\"twitter_username\":\"jordan3love\",\"sportsdata_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"team\":\"GBP\",\"cbs_id\":\"2239997\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32723\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14783\",\"draft_team\":\"PHI\",\"birthdate\":\"902466000\",\"name\":\"Hurts, Jalen\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14416\",\"height\":\"74\",\"twitter_username\":\"JalenHurts\",\"sportsdata_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"team\":\"PHI\",\"cbs_id\":\"2240246\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33207\",\"position\":\"QB\",\"name\":\"Montez, Steven\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14393\",\"id\":\"14784\",\"team\":\"WAS\",\"cbs_id\":\"2185536\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32914\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"14785\",\"draft_team\":\"MIN\",\"birthdate\":\"872571600\",\"name\":\"Stanley, Nate\",\"draft_pick\":\"30\",\"college\":\"Iowa\",\"rotowire_id\":\"14566\",\"height\":\"76\",\"twitter_username\":\"Njstan4\",\"sportsdata_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"team\":\"MIN\",\"cbs_id\":\"2251110\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33246\",\"position\":\"QB\",\"name\":\"Patterson, Shea\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14469\",\"id\":\"14786\",\"team\":\"FA\",\"cbs_id\":\"2221866\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Gordon, Anthony\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14431\",\"id\":\"14787\",\"team\":\"SEA\",\"cbs_id\":\"2251387\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33015\",\"position\":\"QB\",\"name\":\"Lewerke, Brian\",\"college\":\"Michigan State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14530\",\"id\":\"14788\",\"team\":\"FA\",\"cbs_id\":\"2186429\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32993\",\"position\":\"QB\",\"name\":\"Huntley, Tyler\",\"college\":\"Utah\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14563\",\"sportsdata_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"id\":\"14789\",\"team\":\"BAL\",\"cbs_id\":\"3159137\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32795\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14790\",\"draft_team\":\"NYJ\",\"birthdate\":\"857106000\",\"name\":\"Morgan, James\",\"draft_pick\":\"19\",\"college\":\"Florida International\",\"rotowire_id\":\"14531\",\"height\":\"76\",\"twitter_username\":\"jmoneyyy12\",\"sportsdata_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"team\":\"NYJ\",\"cbs_id\":\"2180077\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Fine, Mason\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14786\",\"id\":\"14791\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Perkins, Bryce\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14429\",\"id\":\"14792\",\"team\":\"LAR\",\"cbs_id\":\"3159114\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32859\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"14793\",\"draft_team\":\"JAC\",\"birthdate\":\"829198800\",\"name\":\"Luton, Jake\",\"draft_pick\":\"10\",\"college\":\"Oregon State\",\"rotowire_id\":\"14562\",\"height\":\"78\",\"twitter_username\":\"jakeluton6\",\"sportsdata_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"team\":\"JAC\",\"cbs_id\":\"2132133\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32894\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14794\",\"draft_team\":\"TEN\",\"birthdate\":\"895640400\",\"name\":\"McDonald, Cole\",\"draft_pick\":\"10\",\"college\":\"Hawaii\",\"rotowire_id\":\"14493\",\"height\":\"76\",\"twitter_username\":\"ColeHunter520\",\"sportsdata_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"team\":\"TEN\",\"cbs_id\":\"2257005\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Bryant, Kelly\",\"college\":\"Missouri\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14528\",\"id\":\"14795\",\"team\":\"FA\",\"cbs_id\":\"2179210\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32928\",\"position\":\"QB\",\"name\":\"Neal, Riley\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14859\",\"id\":\"14796\",\"team\":\"DEN\",\"cbs_id\":\"3159056\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32705\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14797\",\"draft_team\":\"DET\",\"birthdate\":\"916290000\",\"name\":\"Swift, D'Andre\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"14394\",\"height\":\"70\",\"twitter_username\":\"DAndreSwift\",\"sportsdata_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"team\":\"DET\",\"cbs_id\":\"2871710\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32756\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14798\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Moss, Zack\",\"draft_pick\":\"22\",\"college\":\"Utah\",\"rotowire_id\":\"14564\",\"height\":\"70\",\"twitter_username\":\"PresMoss2\",\"sportsdata_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"team\":\"BUF\",\"cbs_id\":\"2240516\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32722\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14799\",\"draft_team\":\"LAR\",\"birthdate\":\"930027600\",\"name\":\"Akers, Cam\",\"draft_pick\":\"20\",\"college\":\"Florida State\",\"rotowire_id\":\"14383\",\"height\":\"71\",\"twitter_username\":\"thereal_cam3\",\"sportsdata_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"team\":\"LAR\",\"cbs_id\":\"2804034\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32725\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14800\",\"draft_team\":\"BAL\",\"birthdate\":\"913870800\",\"name\":\"Dobbins, J.K.\",\"draft_pick\":\"23\",\"college\":\"Ohio State\",\"rotowire_id\":\"14418\",\"height\":\"70\",\"twitter_username\":\"jkdobbins22\",\"sportsdata_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"team\":\"BAL\",\"cbs_id\":\"2804420\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32892\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14801\",\"draft_team\":\"ARI\",\"birthdate\":\"945061200\",\"name\":\"Benjamin, Eno\",\"draft_pick\":\"8\",\"college\":\"Arizona State\",\"rotowire_id\":\"14372\",\"height\":\"70\",\"twitter_username\":\"eno_benjamin5\",\"sportsdata_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"team\":\"ARI\",\"cbs_id\":\"2760832\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32711\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14802\",\"draft_team\":\"IND\",\"birthdate\":\"916722000\",\"name\":\"Taylor, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14455\",\"height\":\"71\",\"twitter_username\":\"JayT23\",\"sportsdata_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"team\":\"IND\",\"cbs_id\":\"2866395\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32702\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14803\",\"draft_team\":\"KCC\",\"birthdate\":\"923806800\",\"name\":\"Edwards-Helaire, Clyde\",\"draft_pick\":\"32\",\"college\":\"LSU\",\"rotowire_id\":\"14514\",\"height\":\"68\",\"sportsdata_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"team\":\"KCC\",\"cbs_id\":\"2804554\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32794\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14804\",\"draft_team\":\"PIT\",\"name\":\"McFarland, Anthony\",\"draft_pick\":\"18\",\"college\":\"Maryland\",\"rotowire_id\":\"14357\",\"height\":\"69\",\"sportsdata_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"team\":\"PIT\",\"cbs_id\":\"2804293\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32732\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"espn_id\":\"4239934\",\"weight\":\"250\",\"id\":\"14805\",\"draft_team\":\"GBP\",\"birthdate\":\"894085200\",\"name\":\"Dillon, AJ\",\"draft_pick\":\"30\",\"college\":\"Boston College\",\"rotowire_id\":\"14370\",\"height\":\"73\",\"twitter_username\":\"ajdillon7\",\"sportsdata_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"team\":\"GBP\",\"cbs_id\":\"2867083\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32790\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14806\",\"draft_team\":\"NYJ\",\"birthdate\":\"886136400\",\"name\":\"Perine, Lamical\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"14427\",\"height\":\"71\",\"twitter_username\":\"lp_deucedeuce\",\"sportsdata_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"team\":\"NYJ\",\"cbs_id\":\"2248610\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32782\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14807\",\"draft_team\":\"LAC\",\"birthdate\":\"880002000\",\"name\":\"Kelley, Joshua\",\"draft_pick\":\"6\",\"college\":\"UCLA\",\"rotowire_id\":\"14494\",\"height\":\"71\",\"twitter_username\":\"SmoothplayJK\",\"sportsdata_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"team\":\"LAC\",\"cbs_id\":\"2183195\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32763\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14808\",\"draft_team\":\"TEN\",\"birthdate\":\"899960400\",\"name\":\"Evans, Darrynton\",\"draft_pick\":\"29\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14400\",\"height\":\"71\",\"twitter_username\":\"ItzLiveee\",\"sportsdata_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"team\":\"TEN\",\"cbs_id\":\"2240806\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33153\",\"position\":\"RB\",\"name\":\"Smith, Rodney\",\"college\":\"Minnesota\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14435\",\"id\":\"14809\",\"team\":\"CAR\",\"cbs_id\":\"2165586\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32746\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14810\",\"draft_team\":\"TBB\",\"birthdate\":\"862722000\",\"name\":\"Vaughn, Ke'Shawn\",\"draft_pick\":\"12\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"14557\",\"height\":\"70\",\"twitter_username\":\"SneakVaughn\",\"sportsdata_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"team\":\"TBB\",\"cbs_id\":\"2179704\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Ahmed, Salvon\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14453\",\"id\":\"14811\",\"team\":\"SFO\",\"cbs_id\":\"2815163\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33098\",\"position\":\"RB\",\"name\":\"Anderson, Darius\",\"college\":\"TCU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14565\",\"id\":\"14812\",\"team\":\"DAL\",\"cbs_id\":\"2240319\"},{\"draft_year\":\"2020\",\"birthdate\":\"902638800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33138\",\"position\":\"RB\",\"name\":\"Robinson, James\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14660\",\"weight\":\"220\",\"sportsdata_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"id\":\"14813\",\"team\":\"JAC\",\"cbs_id\":\"2257036\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33307\",\"position\":\"RB\",\"name\":\"Herrien, Brian\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14438\",\"id\":\"14814\",\"team\":\"CLE\",\"cbs_id\":\"2248619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32814\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14815\",\"draft_team\":\"SEA\",\"birthdate\":\"905922000\",\"name\":\"Dallas, DeeJay\",\"draft_pick\":\"38\",\"college\":\"Miami\",\"rotowire_id\":\"14410\",\"height\":\"70\",\"twitter_username\":\"DallasDeejay\",\"sportsdata_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"team\":\"SEA\",\"cbs_id\":\"2804094\"},{\"draft_year\":\"2020\",\"birthdate\":\"910846800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32972\",\"position\":\"RB\",\"name\":\"Warren, Michael\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14496\",\"weight\":\"224\",\"sportsdata_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"id\":\"14816\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Taylor, Patrick\",\"college\":\"Memphis\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14573\",\"id\":\"14817\",\"team\":\"GBP\",\"cbs_id\":\"2256736\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Jones, Xavier\",\"college\":\"SMU\",\"stats_global_id\":\"0\",\"id\":\"14818\",\"team\":\"LAR\",\"cbs_id\":\"3159182\"},{\"draft_year\":\"2020\",\"birthdate\":\"883544400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33126\",\"position\":\"RB\",\"name\":\"Feaster, Tavien\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14592\",\"weight\":\"215\",\"sportsdata_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"id\":\"14819\",\"team\":\"JAC\",\"cbs_id\":\"2239519\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33037\",\"position\":\"RB\",\"name\":\"Leake, Javon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14361\",\"id\":\"14820\",\"team\":\"NYG\",\"cbs_id\":\"2804292\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Hasty, JaMycal\",\"college\":\"Baylor\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14392\",\"id\":\"14821\",\"team\":\"SFO\",\"cbs_id\":\"2189504\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Corbin, Reggie\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14440\",\"id\":\"14822\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33100\",\"position\":\"RB\",\"name\":\"Dowdle, Rico\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14657\",\"id\":\"14823\",\"team\":\"DAL\",\"cbs_id\":\"2252798\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33161\",\"position\":\"RB\",\"name\":\"Phillips, Scottie\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14659\",\"id\":\"14824\",\"team\":\"HOU\",\"cbs_id\":\"2962972\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Conkrite, Jordan\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"id\":\"14825\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Pierce, Artavis\",\"college\":\"Oregon State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14881\",\"id\":\"14826\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33028\",\"position\":\"RB\",\"name\":\"Taylor, J.J.\",\"college\":\"Arizona\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14459\",\"id\":\"14827\",\"team\":\"NEP\",\"cbs_id\":\"2252786\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33114\",\"position\":\"RB\",\"name\":\"Jones, Tony\",\"college\":\"Notre Dame\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14423\",\"weight\":\"224\",\"sportsdata_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"id\":\"14828\",\"team\":\"NOS\",\"cbs_id\":\"2260681\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33309\",\"position\":\"RB\",\"name\":\"LeMay, Benny\",\"college\":\"Charlotte\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14532\",\"id\":\"14829\",\"team\":\"CLE\",\"cbs_id\":\"2258154\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32926\",\"position\":\"RB\",\"name\":\"Bellamy, LaVante\",\"college\":\"Western Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14656\",\"id\":\"14830\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32966\",\"position\":\"RB\",\"name\":\"Killins Jr., Adrian\",\"college\":\"Central Florida\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14396\",\"id\":\"14831\",\"team\":\"PHI\",\"cbs_id\":\"3159156\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32687\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"189\",\"id\":\"14832\",\"draft_team\":\"DAL\",\"birthdate\":\"923547600\",\"name\":\"Lamb, CeeDee\",\"draft_pick\":\"17\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14411\",\"height\":\"74\",\"twitter_username\":\"_CeeDeeThree\",\"sportsdata_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"team\":\"DAL\",\"cbs_id\":\"2865251\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32685\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14833\",\"draft_team\":\"DEN\",\"birthdate\":\"924930000\",\"name\":\"Jeudy, Jerry\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"14458\",\"height\":\"73\",\"twitter_username\":\"jerryjeudy\",\"sportsdata_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"team\":\"DEN\",\"cbs_id\":\"2741201\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32682\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14834\",\"draft_team\":\"LVR\",\"birthdate\":\"917154000\",\"name\":\"Ruggs, Henry\",\"draft_pick\":\"12\",\"college\":\"Alabama\",\"rotowire_id\":\"14473\",\"height\":\"72\",\"twitter_username\":\"__RUGGS\",\"sportsdata_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32703\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14835\",\"draft_team\":\"CIN\",\"birthdate\":\"917499600\",\"name\":\"Higgins, Tee\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"14506\",\"height\":\"76\",\"twitter_username\":\"teehiggins5\",\"sportsdata_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"team\":\"CIN\",\"cbs_id\":\"2809208\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32692\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14836\",\"draft_team\":\"MIN\",\"birthdate\":\"929509200\",\"name\":\"Jefferson, Justin\",\"draft_pick\":\"22\",\"college\":\"LSU\",\"rotowire_id\":\"14509\",\"height\":\"75\",\"twitter_username\":\"JJettas2\",\"sportsdata_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"team\":\"MIN\",\"cbs_id\":\"2871343\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32716\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"14837\",\"draft_team\":\"DEN\",\"birthdate\":\"931410000\",\"name\":\"Hamler, KJ\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14462\",\"height\":\"69\",\"twitter_username\":\"Kj_hamler\",\"sportsdata_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"team\":\"DEN\",\"cbs_id\":\"2804432\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32712\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14838\",\"draft_team\":\"JAC\",\"birthdate\":\"907563600\",\"name\":\"Shenault, Laviska\",\"draft_pick\":\"10\",\"college\":\"Colorado\",\"rotowire_id\":\"14358\",\"height\":\"74\",\"twitter_username\":\"Viska2live\",\"sportsdata_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32691\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14839\",\"draft_team\":\"PHI\",\"birthdate\":\"915166800\",\"name\":\"Reagor, Jalen\",\"draft_pick\":\"21\",\"college\":\"TCU\",\"rotowire_id\":\"14421\",\"height\":\"71\",\"twitter_username\":\"jalenreagor\",\"sportsdata_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"team\":\"PHI\",\"cbs_id\":\"2803733\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32695\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"14840\",\"draft_team\":\"SFO\",\"birthdate\":\"890110800\",\"name\":\"Aiyuk, Brandon\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"rotowire_id\":\"14386\",\"height\":\"73\",\"twitter_username\":\"THE2ERA\",\"sportsdata_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"team\":\"SFO\",\"cbs_id\":\"2967489\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32719\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14841\",\"draft_team\":\"PIT\",\"birthdate\":\"899787600\",\"name\":\"Claypool, Chase\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14433\",\"height\":\"76\",\"twitter_username\":\"ChaseClaypool\",\"sportsdata_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"team\":\"PIT\",\"cbs_id\":\"2260676\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32704\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14842\",\"draft_team\":\"IND\",\"birthdate\":\"876027600\",\"name\":\"Pittman, Michael\",\"draft_pick\":\"2\",\"college\":\"USC\",\"rotowire_id\":\"14378\",\"height\":\"76\",\"twitter_username\":\"MikePitt_Jr\",\"sportsdata_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"team\":\"IND\",\"cbs_id\":\"2240188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32750\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14843\",\"draft_team\":\"LVR\",\"birthdate\":\"876805200\",\"name\":\"Bowden, Lynn\",\"draft_pick\":\"16\",\"college\":\"Kentucky\",\"rotowire_id\":\"14460\",\"height\":\"72\",\"twitter_username\":\"LynnBowden_1\",\"sportsdata_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"team\":\"LVR\",\"cbs_id\":\"2875380\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32751\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14844\",\"draft_team\":\"LVR\",\"birthdate\":\"910933200\",\"name\":\"Edwards, Bryan\",\"draft_pick\":\"17\",\"college\":\"South Carolina\",\"rotowire_id\":\"14577\",\"height\":\"75\",\"twitter_username\":\"B__ED89\",\"sportsdata_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"team\":\"LVR\",\"cbs_id\":\"2221840\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32798\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14845\",\"draft_team\":\"BUF\",\"birthdate\":\"922942800\",\"name\":\"Davis, Gabriel\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"rotowire_id\":\"14359\",\"height\":\"75\",\"twitter_username\":\"DavisGB1\",\"sportsdata_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"team\":\"BUF\",\"cbs_id\":\"2804813\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32729\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14846\",\"draft_team\":\"NYJ\",\"birthdate\":\"876459600\",\"name\":\"Mims, Denzel\",\"draft_pick\":\"27\",\"college\":\"Baylor\",\"rotowire_id\":\"14539\",\"height\":\"75\",\"twitter_username\":\"Zel5Zelly\",\"sportsdata_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"team\":\"NYJ\",\"cbs_id\":\"2253076\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32762\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14847\",\"draft_team\":\"BAL\",\"birthdate\":\"874040400\",\"name\":\"Duvernay, Devin\",\"draft_pick\":\"28\",\"college\":\"Texas\",\"rotowire_id\":\"14636\",\"height\":\"71\",\"twitter_username\":\"Dev_Duv5\",\"sportsdata_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"team\":\"BAL\",\"cbs_id\":\"2246849\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32871\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14848\",\"draft_team\":\"BAL\",\"birthdate\":\"843282000\",\"name\":\"Proche, James\",\"draft_pick\":\"22\",\"college\":\"SMU\",\"rotowire_id\":\"14415\",\"height\":\"72\",\"twitter_username\":\"jamesproche3\",\"sportsdata_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"team\":\"BAL\",\"cbs_id\":\"2180769\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32877\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14849\",\"draft_team\":\"BUF\",\"birthdate\":\"908946000\",\"name\":\"Hodgins, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Oregon State\",\"rotowire_id\":\"14356\",\"height\":\"76\",\"twitter_username\":\"IsaiahHodgins\",\"sportsdata_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"team\":\"BUF\",\"cbs_id\":\"2783899\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32836\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14850\",\"draft_team\":\"DET\",\"birthdate\":\"891406800\",\"name\":\"Cephus, Quintez\",\"draft_pick\":\"20\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14466\",\"height\":\"73\",\"twitter_username\":\"QoDeep_87\",\"sportsdata_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"team\":\"DET\",\"cbs_id\":\"2251870\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32890\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14851\",\"draft_team\":\"LAC\",\"birthdate\":\"874299600\",\"name\":\"Hill, K.J.\",\"draft_pick\":\"6\",\"college\":\"Ohio State\",\"rotowire_id\":\"14414\",\"height\":\"72\",\"twitter_username\":\"kayjayhill\",\"sportsdata_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"team\":\"LAC\",\"cbs_id\":\"2179813\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32736\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14852\",\"draft_team\":\"WAS\",\"name\":\"Gibson, Antonio\",\"draft_pick\":\"2\",\"college\":\"Memphis\",\"rotowire_id\":\"14639\",\"height\":\"74\",\"twitter_username\":\"antoniogibson14\",\"sportsdata_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"team\":\"WAS\",\"cbs_id\":\"2960976\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32835\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14853\",\"draft_team\":\"JAC\",\"birthdate\":\"874990800\",\"name\":\"Johnson, Collin\",\"draft_pick\":\"19\",\"college\":\"Texas\",\"rotowire_id\":\"14545\",\"height\":\"78\",\"twitter_username\":\"Call_In_Johnson\",\"sportsdata_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"team\":\"JAC\",\"cbs_id\":\"2240315\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Victor, Binjimen\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14529\",\"id\":\"14854\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33039\",\"position\":\"WR\",\"name\":\"Mack, Austin\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14546\",\"weight\":\"215\",\"sportsdata_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"id\":\"14855\",\"team\":\"NYG\",\"cbs_id\":\"2239784\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33027\",\"position\":\"WR\",\"name\":\"Davis, Quartney\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14461\",\"id\":\"14856\",\"team\":\"MIN\",\"cbs_id\":\"2249179\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32857\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14857\",\"draft_team\":\"CLE\",\"birthdate\":\"919400400\",\"name\":\"Peoples-Jones, Donovan\",\"draft_pick\":\"8\",\"college\":\"Michigan\",\"rotowire_id\":\"14457\",\"height\":\"74\",\"twitter_username\":\"dpeoplesjones\",\"sportsdata_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"team\":\"CLE\",\"cbs_id\":\"2819119\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32727\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14858\",\"draft_team\":\"LAR\",\"birthdate\":\"838357200\",\"name\":\"Jefferson, Van\",\"draft_pick\":\"25\",\"college\":\"Florida\",\"rotowire_id\":\"14430\",\"height\":\"74\",\"sportsdata_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"team\":\"LAR\",\"cbs_id\":\"2186342\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Jackson, Trishton\",\"college\":\"Syracuse\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14402\",\"id\":\"14859\",\"team\":\"LAR\",\"cbs_id\":\"2253371\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32887\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14860\",\"draft_team\":\"SFO\",\"birthdate\":\"868510800\",\"name\":\"Jennings, Jauan\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"14376\",\"height\":\"75\",\"sportsdata_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"team\":\"SFO\",\"cbs_id\":\"2180514\"},{\"draft_year\":\"2020\",\"birthdate\":\"842590800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33113\",\"position\":\"WR\",\"name\":\"Johnson, Juwan\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14630\",\"weight\":\"231\",\"sportsdata_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"id\":\"14861\",\"team\":\"NOS\",\"cbs_id\":\"2186637\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32821\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14862\",\"draft_team\":\"LAC\",\"birthdate\":\"883890000\",\"name\":\"Reed, Joe\",\"draft_pick\":\"5\",\"college\":\"Virginia\",\"rotowire_id\":\"14428\",\"height\":\"73\",\"twitter_username\":\"JoeBee_2\",\"sportsdata_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"team\":\"LAC\",\"cbs_id\":\"2251260\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32812\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14863\",\"draft_team\":\"WAS\",\"birthdate\":\"892270800\",\"name\":\"Gandy-Golden, Antonio\",\"draft_pick\":\"36\",\"college\":\"Liberty\",\"rotowire_id\":\"14568\",\"height\":\"76\",\"twitter_username\":\"gandygolden11\",\"sportsdata_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"team\":\"WAS\",\"cbs_id\":\"2250521\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32831\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14864\",\"draft_team\":\"TBB\",\"birthdate\":\"904021200\",\"name\":\"Johnson, Tyler\",\"draft_pick\":\"15\",\"college\":\"Minnesota\",\"rotowire_id\":\"14432\",\"height\":\"74\",\"twitter_username\":\"T_muhneyy10\",\"sportsdata_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"team\":\"TBB\",\"cbs_id\":\"1620002\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32884\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"14865\",\"draft_team\":\"SEA\",\"birthdate\":\"902206800\",\"name\":\"Swain, Freddie\",\"draft_pick\":\"35\",\"college\":\"Florida\",\"rotowire_id\":\"14644\",\"height\":\"72\",\"sportsdata_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"team\":\"SEA\",\"cbs_id\":\"2221836\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33022\",\"position\":\"WR\",\"name\":\"Thomas, Jeff\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14382\",\"id\":\"14866\",\"team\":\"NEP\",\"cbs_id\":\"2826768\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32713\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"258\",\"id\":\"14867\",\"draft_team\":\"CHI\",\"birthdate\":\"921042000\",\"name\":\"Kmet, Cole\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14436\",\"height\":\"78\",\"twitter_username\":\"ColeKmet\",\"sportsdata_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"team\":\"CHI\",\"cbs_id\":\"2868619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32806\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14868\",\"draft_team\":\"LAR\",\"birthdate\":\"859438800\",\"name\":\"Hopkins, Brycen\",\"draft_pick\":\"30\",\"college\":\"Purdue\",\"rotowire_id\":\"14586\",\"height\":\"77\",\"twitter_username\":\"Itsbhop89\",\"sportsdata_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"team\":\"LAR\",\"cbs_id\":\"2183906\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33208\",\"position\":\"TE\",\"name\":\"Moss, Thaddeus\",\"college\":\"LSU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14524\",\"id\":\"14869\",\"team\":\"WAS\",\"cbs_id\":\"2246946\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32775\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14870\",\"draft_team\":\"NOS\",\"birthdate\":\"855118800\",\"name\":\"Trautman, Adam\",\"draft_pick\":\"41\",\"college\":\"Dayton\",\"rotowire_id\":\"14541\",\"height\":\"78\",\"sportsdata_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"team\":\"NOS\",\"cbs_id\":\"2182228\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32803\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14871\",\"draft_team\":\"SEA\",\"birthdate\":\"915771600\",\"name\":\"Parkinson, Colby\",\"draft_pick\":\"27\",\"college\":\"Stanford\",\"rotowire_id\":\"14463\",\"height\":\"79\",\"sportsdata_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"team\":\"SEA\",\"cbs_id\":\"2867522\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33064\",\"position\":\"TE\",\"name\":\"Pinkney, Jared\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14632\",\"sportsdata_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"id\":\"14872\",\"team\":\"ATL\",\"cbs_id\":\"2180558\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32788\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14873\",\"draft_team\":\"DEN\",\"birthdate\":\"893480400\",\"name\":\"Okwuegbunam, Albert\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"rotowire_id\":\"14369\",\"height\":\"77\",\"twitter_username\":\"AOkwuegbunam\",\"sportsdata_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"team\":\"DEN\",\"cbs_id\":\"2245117\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Bryant, Hunter\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14364\",\"id\":\"14874\",\"team\":\"DET\",\"cbs_id\":\"2815166\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32785\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14875\",\"draft_team\":\"CLE\",\"birthdate\":\"893307600\",\"name\":\"Bryant, Harrison\",\"draft_pick\":\"9\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14576\",\"height\":\"77\",\"twitter_username\":\"hbryant17\",\"sportsdata_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"team\":\"CLE\",\"cbs_id\":\"2241240\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32764\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14876\",\"draft_team\":\"GBP\",\"birthdate\":\"855896400\",\"name\":\"Deguara, Josiah\",\"draft_pick\":\"30\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14629\",\"height\":\"75\",\"twitter_username\":\"JosiahD5\",\"sportsdata_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"team\":\"GBP\",\"cbs_id\":\"2181108\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32672\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14877\",\"draft_team\":\"WAS\",\"birthdate\":\"924066000\",\"name\":\"Young, Chase\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"14452\",\"height\":\"77\",\"twitter_username\":\"youngchase907\",\"sportsdata_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"team\":\"WAS\",\"cbs_id\":\"2829229\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32707\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"264\",\"id\":\"14878\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Gross-Matos, Yetur\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"rotowire_id\":\"14355\",\"height\":\"77\",\"twitter_username\":\"__lobo99\",\"sportsdata_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"team\":\"CAR\",\"cbs_id\":\"2868927\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32724\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14879\",\"draft_team\":\"BUF\",\"birthdate\":\"905835600\",\"name\":\"Epenesa, A.J.\",\"draft_pick\":\"22\",\"college\":\"Iowa\",\"rotowire_id\":\"14501\",\"height\":\"77\",\"twitter_username\":\"ajepenesa24\",\"sportsdata_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"team\":\"BUF\",\"cbs_id\":\"2865969\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32817\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14880\",\"draft_team\":\"CIN\",\"birthdate\":\"893739600\",\"name\":\"Kareem, Khalid\",\"draft_pick\":\"1\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14684\",\"height\":\"76\",\"twitter_username\":\"khalid_kareem53\",\"sportsdata_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"team\":\"CIN\",\"cbs_id\":\"2240621\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Coe, Nick\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14398\",\"id\":\"14881\",\"team\":\"NEP\",\"cbs_id\":\"2257893\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"rotoworld_id\":\"60119\",\"status\":\"R\",\"stats_id\":\"32760\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14882\",\"draft_team\":\"HOU\",\"birthdate\":\"864536400\",\"name\":\"Greenard, Jonathan\",\"draft_pick\":\"26\",\"college\":\"Florida\",\"rotowire_id\":\"14550\",\"height\":\"75\",\"twitter_username\":\"jongreenard7\",\"sportsdata_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"team\":\"HOU\",\"cbs_id\":\"2181166\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32717\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"279\",\"id\":\"14883\",\"draft_team\":\"ATL\",\"birthdate\":\"894862800\",\"name\":\"Davidson, Marlon\",\"draft_pick\":\"15\",\"college\":\"Auburn\",\"rotowire_id\":\"14540\",\"height\":\"75\",\"twitter_username\":\"marlondavidson7\",\"sportsdata_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"team\":\"ATL\",\"cbs_id\":\"2222006\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32824\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14884\",\"draft_team\":\"MIA\",\"birthdate\":\"842331600\",\"name\":\"Strowbridge, Jason\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"rotowire_id\":\"14730\",\"height\":\"77\",\"sportsdata_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"team\":\"MIA\",\"cbs_id\":\"2179351\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32749\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"14885\",\"draft_team\":\"NYJ\",\"name\":\"Zuniga, Jabari\",\"draft_pick\":\"15\",\"college\":\"Florida\",\"rotowire_id\":\"14734\",\"height\":\"76\",\"twitter_username\":\"JabariZuniga\",\"sportsdata_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"team\":\"NYJ\",\"cbs_id\":\"2180452\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14886\",\"draft_team\":\"DAL\",\"birthdate\":\"908600400\",\"name\":\"Anae, Bradlee\",\"draft_pick\":\"33\",\"college\":\"Utah\",\"rotowire_id\":\"14582\",\"height\":\"75\",\"sportsdata_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"team\":\"DAL\",\"cbs_id\":\"2240496\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32678\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14887\",\"draft_team\":\"ARI\",\"birthdate\":\"901429200\",\"name\":\"Simmons, Isaiah\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"14525\",\"height\":\"75\",\"twitter_username\":\"isaiahsimmons25\",\"sportsdata_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"team\":\"ARI\",\"cbs_id\":\"2239532\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32690\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14888\",\"draft_team\":\"JAC\",\"birthdate\":\"932878800\",\"name\":\"Chaisson, K'Lavon\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"14523\",\"height\":\"76\",\"twitter_username\":\"S4CKGURU\",\"sportsdata_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"team\":\"JAC\",\"cbs_id\":\"2804551\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32693\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"234\",\"id\":\"14889\",\"draft_team\":\"LAC\",\"birthdate\":\"911192400\",\"name\":\"Murray, Kenneth\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14434\",\"height\":\"75\",\"twitter_username\":\"KennethMurray\",\"sportsdata_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"team\":\"LAC\",\"cbs_id\":\"2804138\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32767\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14890\",\"draft_team\":\"CLE\",\"birthdate\":\"922942800\",\"name\":\"Phillips, Jacob\",\"draft_pick\":\"33\",\"college\":\"LSU\",\"rotowire_id\":\"14517\",\"height\":\"76\",\"twitter_username\":\"jacobphilly\",\"sportsdata_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"team\":\"CLE\",\"cbs_id\":\"2804564\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32768\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14891\",\"draft_team\":\"BAL\",\"birthdate\":\"889074000\",\"name\":\"Harrison, Malik\",\"draft_pick\":\"34\",\"college\":\"Ohio State\",\"rotowire_id\":\"14648\",\"height\":\"75\",\"sportsdata_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"team\":\"BAL\",\"cbs_id\":\"2260979\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32697\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14892\",\"draft_team\":\"SEA\",\"birthdate\":\"877410000\",\"name\":\"Brooks, Jordyn\",\"draft_pick\":\"27\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14739\",\"height\":\"73\",\"twitter_username\":\"JordynBrooks_\",\"sportsdata_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"team\":\"SEA\",\"cbs_id\":\"2252263\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32744\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14893\",\"draft_team\":\"NOS\",\"name\":\"Baun, Zack\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14374\",\"height\":\"75\",\"twitter_username\":\"zackbizzaun\",\"sportsdata_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"team\":\"NOS\",\"cbs_id\":\"2183919\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32757\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14894\",\"draft_team\":\"NEP\",\"birthdate\":\"862462800\",\"name\":\"Jennings, Anfernee\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"14742\",\"height\":\"75\",\"twitter_username\":\"anferneejenning\",\"sportsdata_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"team\":\"NEP\",\"cbs_id\":\"2186321\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Woodward, David\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14645\",\"id\":\"14895\",\"team\":\"FA\",\"cbs_id\":\"2258285\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32698\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14896\",\"draft_team\":\"BAL\",\"birthdate\":\"934520400\",\"name\":\"Queen, Patrick\",\"draft_pick\":\"28\",\"college\":\"LSU\",\"rotowire_id\":\"14508\",\"height\":\"73\",\"twitter_username\":\"Patrickqueen_\",\"sportsdata_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"team\":\"BAL\",\"cbs_id\":\"2804566\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32677\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"318\",\"id\":\"14897\",\"draft_team\":\"CAR\",\"birthdate\":\"892616400\",\"name\":\"Brown, Derrick\",\"draft_pick\":\"7\",\"college\":\"Auburn\",\"rotowire_id\":\"13852\",\"height\":\"77\",\"twitter_username\":\"DerrickBrownAU5\",\"sportsdata_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"team\":\"CAR\",\"cbs_id\":\"2241797\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32726\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14898\",\"draft_team\":\"MIA\",\"birthdate\":\"865918800\",\"name\":\"Davis, Raekwon\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"14538\",\"height\":\"79\",\"twitter_username\":\"raekwondavis_99\",\"sportsdata_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"team\":\"MIA\",\"cbs_id\":\"2252833\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32684\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14899\",\"draft_team\":\"SFO\",\"birthdate\":\"875854800\",\"name\":\"Kinlaw, Javon\",\"draft_pick\":\"14\",\"college\":\"South Carolina\",\"rotowire_id\":\"14444\",\"height\":\"78\",\"twitter_username\":\"JavonKinlaw\",\"sportsdata_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"team\":\"SFO\",\"cbs_id\":\"2869019\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32741\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14900\",\"draft_team\":\"BAL\",\"birthdate\":\"879742800\",\"name\":\"Madubuike, Justin\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14380\",\"height\":\"75\",\"twitter_username\":\"MadubuikeJustin\",\"sportsdata_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"team\":\"BAL\",\"cbs_id\":\"2249188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32752\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"302\",\"id\":\"14901\",\"draft_team\":\"DAL\",\"birthdate\":\"853477200\",\"name\":\"Gallimore, Neville\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14451\",\"height\":\"74\",\"twitter_username\":\"path2greatwork\",\"sportsdata_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"team\":\"DAL\",\"cbs_id\":\"2179652\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32673\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14902\",\"draft_team\":\"DET\",\"birthdate\":\"917931600\",\"name\":\"Okudah, Jeff\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"14424\",\"height\":\"73\",\"twitter_username\":\"jeffokudah\",\"sportsdata_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"team\":\"DET\",\"cbs_id\":\"2804425\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32721\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"14903\",\"draft_team\":\"DAL\",\"birthdate\":\"906267600\",\"name\":\"Diggs, Trevon\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"14389\",\"height\":\"74\",\"twitter_username\":\"TrevonDiggs\",\"sportsdata_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"team\":\"DAL\",\"cbs_id\":\"2252834\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32731\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14904\",\"draft_team\":\"TEN\",\"birthdate\":\"904798800\",\"name\":\"Fulton, Kristian\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"14443\",\"height\":\"72\",\"twitter_username\":\"Kriss1_\",\"sportsdata_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"team\":\"TEN\",\"cbs_id\":\"2223248\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32679\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14905\",\"draft_team\":\"JAC\",\"birthdate\":\"907131600\",\"name\":\"Henderson, CJ\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"14367\",\"height\":\"73\",\"twitter_username\":\"HendersonChris_\",\"sportsdata_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"team\":\"JAC\",\"cbs_id\":\"2773013\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32689\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14906\",\"draft_team\":\"LVR\",\"birthdate\":\"823237200\",\"name\":\"Arnette, Damon\",\"draft_pick\":\"19\",\"college\":\"Ohio State\",\"rotowire_id\":\"14547\",\"height\":\"72\",\"twitter_username\":\"damon_arnette\",\"sportsdata_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"team\":\"LVR\",\"cbs_id\":\"2179793\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32714\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"14907\",\"draft_team\":\"CLE\",\"birthdate\":\"906267600\",\"name\":\"Delpit, Grant\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"14507\",\"height\":\"75\",\"twitter_username\":\"realgrantdelpit\",\"sportsdata_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"team\":\"CLE\",\"cbs_id\":\"2804169\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32706\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14908\",\"draft_team\":\"NYG\",\"birthdate\":\"934174800\",\"name\":\"McKinney, Xavier\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"rotowire_id\":\"14617\",\"height\":\"73\",\"twitter_username\":\"mckinney15__\",\"sportsdata_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"team\":\"NYG\",\"cbs_id\":\"2741205\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32715\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14909\",\"draft_team\":\"TBB\",\"birthdate\":\"903243600\",\"name\":\"Winfield, Antoine\",\"draft_pick\":\"13\",\"college\":\"Minnesota\",\"rotowire_id\":\"14484\",\"height\":\"69\",\"twitter_username\":\"AntoineWJr11\",\"sportsdata_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"team\":\"TBB\",\"cbs_id\":\"2239774\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32740\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14910\",\"draft_team\":\"MIA\",\"birthdate\":\"891493200\",\"name\":\"Jones, Brandon\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"rotowire_id\":\"14696\",\"height\":\"72\",\"twitter_username\":\"BlessedJones33\",\"sportsdata_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"team\":\"MIA\",\"cbs_id\":\"2246113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32738\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14911\",\"draft_team\":\"NYJ\",\"birthdate\":\"844923600\",\"name\":\"Davis, Ashtyn\",\"draft_pick\":\"4\",\"college\":\"California\",\"rotowire_id\":\"14447\",\"height\":\"73\",\"sportsdata_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"team\":\"NYJ\",\"cbs_id\":\"2180264\"},{\"draft_year\":\"2020\",\"birthdate\":\"854514000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33211\",\"position\":\"PK\",\"name\":\"Blankenship, Rodrigo\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14437\",\"weight\":\"191\",\"sportsdata_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"id\":\"14912\",\"team\":\"IND\",\"cbs_id\":\"2183949\"},{\"draft_year\":\"2018\",\"birthdate\":\"773298000\",\"draft_team\":\"FA\",\"stats_id\":\"31669\",\"position\":\"DE\",\"name\":\"Walker, Cavon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13244\",\"weight\":\"278\",\"sportsdata_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"id\":\"14913\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"640933200\",\"draft_team\":\"FA\",\"stats_id\":\"32668\",\"position\":\"PK\",\"name\":\"Hajrullahu, Lirim\",\"college\":\"Western Ontario\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14808\",\"weight\":\"205\",\"sportsdata_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"id\":\"14914\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"799563600\",\"draft_team\":\"FA\",\"stats_id\":\"32667\",\"position\":\"PK\",\"name\":\"MacGinnis, Austin\",\"college\":\"Kentucky\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14354\",\"weight\":\"185\",\"sportsdata_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"id\":\"14915\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"878706000\",\"draft_team\":\"FA\",\"stats_id\":\"32097\",\"position\":\"CB\",\"name\":\"Smith, Saivion\",\"college\":\"Alabama\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13589\",\"jersey\":\"35\",\"weight\":\"199\",\"sportsdata_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"id\":\"14916\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852613200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32669\",\"position\":\"RB\",\"name\":\"Patrick, Jacques\",\"college\":\"Florida State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13964\",\"weight\":\"236\",\"sportsdata_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"id\":\"14917\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32686\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14918\",\"draft_team\":\"ATL\",\"birthdate\":\"906526800\",\"name\":\"Terrell, A.J.\",\"draft_pick\":\"16\",\"college\":\"Clemson\",\"rotowire_id\":\"14526\",\"height\":\"74\",\"twitter_username\":\"ajterrell_8\",\"sportsdata_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"team\":\"ATL\",\"cbs_id\":\"2809212\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32700\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14919\",\"draft_team\":\"MIA\",\"birthdate\":\"943678800\",\"name\":\"Igbinoghene, Noah\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"14713\",\"height\":\"71\",\"twitter_username\":\"Noah_Igbo9\",\"sportsdata_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"team\":\"MIA\",\"cbs_id\":\"2829987\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32701\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14920\",\"draft_team\":\"MIN\",\"birthdate\":\"850366800\",\"name\":\"Gladney, Jeff\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"14548\",\"height\":\"72\",\"sportsdata_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"team\":\"MIN\",\"cbs_id\":\"2180855\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32710\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14921\",\"draft_team\":\"NEP\",\"birthdate\":\"827470800\",\"name\":\"Dugger, Kyle\",\"draft_pick\":\"5\",\"college\":\"Lenoir-Rhyne University\",\"rotowire_id\":\"14542\",\"height\":\"74\",\"twitter_username\":\"KingDugg_3\",\"sportsdata_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"team\":\"NEP\",\"cbs_id\":\"3150388\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32709\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14922\",\"draft_team\":\"HOU\",\"birthdate\":\"899960400\",\"name\":\"Blacklock, Ross\",\"draft_pick\":\"8\",\"college\":\"TCU\",\"rotowire_id\":\"14406\",\"height\":\"76\",\"twitter_username\":\"1krozayy\",\"sportsdata_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"team\":\"HOU\",\"cbs_id\":\"2240321\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32718\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14923\",\"draft_team\":\"SEA\",\"birthdate\":\"859179600\",\"name\":\"Taylor, Darrell\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"14649\",\"height\":\"75\",\"twitter_username\":\"darrelltaylorst\",\"sportsdata_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"team\":\"SEA\",\"cbs_id\":\"2180538\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32720\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14924\",\"draft_team\":\"CHI\",\"name\":\"Johnson, Jaylon\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14627\",\"height\":\"72\",\"twitter_username\":\"NBAxJay1\",\"sportsdata_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"team\":\"CHI\",\"cbs_id\":\"2827532\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32730\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14925\",\"draft_team\":\"NEP\",\"birthdate\":\"906094800\",\"name\":\"Uche, Josh\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"14477\",\"height\":\"74\",\"twitter_username\":\"_Uche35\",\"sportsdata_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"team\":\"NEP\",\"cbs_id\":\"2260670\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32733\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14926\",\"draft_team\":\"KCC\",\"birthdate\":\"887518800\",\"name\":\"Gay, Willie\",\"draft_pick\":\"31\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14520\",\"height\":\"74\",\"twitter_username\":\"WillieG___\",\"sportsdata_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32734\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14927\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Chinn, Jeremy\",\"draft_pick\":\"32\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14623\",\"height\":\"75\",\"twitter_username\":\"ChinnJeremy2\",\"sportsdata_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"team\":\"CAR\",\"cbs_id\":\"2247190\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32735\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14928\",\"draft_team\":\"CIN\",\"birthdate\":\"836802000\",\"name\":\"Wilson, Logan\",\"draft_pick\":\"1\",\"college\":\"Wyoming\",\"rotowire_id\":\"14647\",\"height\":\"74\",\"twitter_username\":\"ljw21\",\"sportsdata_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"team\":\"CIN\",\"cbs_id\":\"2181091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32737\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"241\",\"id\":\"14929\",\"draft_team\":\"DET\",\"birthdate\":\"883198800\",\"name\":\"Okwara, Julian\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14448\",\"height\":\"77\",\"twitter_username\":\"julian_okwara\",\"sportsdata_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"team\":\"DET\",\"cbs_id\":\"2260688\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32743\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14930\",\"draft_team\":\"JAC\",\"name\":\"Hamilton, Davon\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"14714\",\"height\":\"76\",\"twitter_username\":\"dmhamilton53\",\"sportsdata_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"team\":\"JAC\",\"cbs_id\":\"2179811\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32747\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14931\",\"draft_team\":\"DEN\",\"birthdate\":\"874040400\",\"name\":\"Ojemudia, Michael\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"14711\",\"height\":\"73\",\"twitter_username\":\"GotMo_J\",\"sportsdata_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"team\":\"DEN\",\"cbs_id\":\"2179727\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"252\",\"id\":\"14932\",\"draft_team\":\"LAR\",\"name\":\"Lewis, Terrell\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"rotowire_id\":\"14390\",\"height\":\"77\",\"twitter_username\":\"_real24_\",\"sportsdata_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"team\":\"LAR\",\"cbs_id\":\"2252836\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32755\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"14933\",\"draft_team\":\"IND\",\"birthdate\":\"903934800\",\"name\":\"Blackmon, Julian\",\"draft_pick\":\"21\",\"college\":\"Utah\",\"rotowire_id\":\"14704\",\"height\":\"73\",\"twitter_username\":\"jumpmanjuice23\",\"sportsdata_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"team\":\"IND\",\"cbs_id\":\"2253091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32758\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14934\",\"draft_team\":\"CLE\",\"birthdate\":\"880261200\",\"name\":\"Elliott, Jordan\",\"draft_pick\":\"24\",\"college\":\"Missouri\",\"rotowire_id\":\"14353\",\"height\":\"76\",\"twitter_username\":\"bigj5k\",\"sportsdata_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"team\":\"CLE\",\"cbs_id\":\"2246110\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32759\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14935\",\"draft_team\":\"MIN\",\"birthdate\":\"904798800\",\"name\":\"Dantzler, Cameron\",\"draft_pick\":\"25\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14363\",\"height\":\"74\",\"twitter_username\":\"camdantzler3\",\"sportsdata_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"team\":\"MIN\",\"cbs_id\":\"2248633\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32761\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14936\",\"draft_team\":\"NEP\",\"birthdate\":\"871534800\",\"name\":\"Asiasi, Devin\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"14425\",\"height\":\"75\",\"twitter_username\":\"ASI2X\",\"sportsdata_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"team\":\"NEP\",\"cbs_id\":\"2260483\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32765\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14937\",\"draft_team\":\"DEN\",\"birthdate\":\"875163600\",\"name\":\"Agim, McTelvin\",\"draft_pick\":\"31\",\"college\":\"Arkansas\",\"rotowire_id\":\"14602\",\"height\":\"75\",\"twitter_username\":\"So_Splash\",\"sportsdata_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"team\":\"DEN\",\"cbs_id\":\"2240258\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32770\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14938\",\"draft_team\":\"LVR\",\"birthdate\":\"841986000\",\"name\":\"Muse, Tanner\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"14690\",\"height\":\"75\",\"twitter_username\":\"tanner_muse\",\"sportsdata_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"team\":\"LVR\",\"cbs_id\":\"2179227\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32771\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14939\",\"draft_team\":\"NEP\",\"birthdate\":\"924066000\",\"name\":\"Keene, Dalton\",\"draft_pick\":\"37\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14559\",\"height\":\"76\",\"twitter_username\":\"DaltonKeene18\",\"sportsdata_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"team\":\"NEP\",\"cbs_id\":\"2805113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32772\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"14940\",\"draft_team\":\"PIT\",\"birthdate\":\"870930000\",\"name\":\"Highsmith, Alex\",\"draft_pick\":\"38\",\"college\":\"North Carolina-Charlotte\",\"rotowire_id\":\"14724\",\"height\":\"76\",\"twitter_username\":\"highsmith34\",\"sportsdata_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"team\":\"PIT\",\"cbs_id\":\"2241393\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32773\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14941\",\"draft_team\":\"PHI\",\"birthdate\":\"902293200\",\"name\":\"Taylor, Davion\",\"draft_pick\":\"39\",\"college\":\"Colorado\",\"rotowire_id\":\"14751\",\"height\":\"74\",\"twitter_username\":\"daviontaylot\",\"sportsdata_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"team\":\"PHI\",\"cbs_id\":\"2962569\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32774\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14942\",\"draft_team\":\"LAR\",\"birthdate\":\"910846800\",\"name\":\"Burgess, Terrell\",\"draft_pick\":\"40\",\"college\":\"Utah\",\"rotowire_id\":\"14702\",\"height\":\"72\",\"twitter_username\":\"titaniumt98\",\"sportsdata_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"team\":\"LAR\",\"cbs_id\":\"2240499\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32777\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14943\",\"draft_team\":\"CIN\",\"birthdate\":\"874818000\",\"name\":\"Davis-Gaither, Akeem\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14661\",\"height\":\"74\",\"twitter_username\":\"AkeemDavis16\",\"sportsdata_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"team\":\"CIN\",\"cbs_id\":\"2182263\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32780\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14944\",\"draft_team\":\"NYG\",\"birthdate\":\"898578000\",\"name\":\"Holmes, Darney\",\"draft_pick\":\"4\",\"college\":\"UCLA\",\"rotowire_id\":\"14535\",\"height\":\"70\",\"twitter_username\":\"prowaydarnay\",\"sportsdata_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32783\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"14945\",\"draft_team\":\"CAR\",\"birthdate\":\"885186000\",\"name\":\"Pride, Troy\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14581\",\"height\":\"71\",\"twitter_username\":\"TroyPride18\",\"sportsdata_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"team\":\"CAR\",\"cbs_id\":\"2260689\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32784\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"335\",\"id\":\"14946\",\"draft_team\":\"ARI\",\"birthdate\":\"903848400\",\"name\":\"Fotu, Leki\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"14712\",\"height\":\"77\",\"twitter_username\":\"LekiFotu\",\"sportsdata_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"team\":\"ARI\",\"cbs_id\":\"2240504\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32787\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14947\",\"draft_team\":\"MIN\",\"birthdate\":\"878274000\",\"name\":\"Wonnum, D.J.\",\"draft_pick\":\"11\",\"college\":\"South Carolina\",\"rotowire_id\":\"14612\",\"height\":\"77\",\"twitter_username\":\"dwonnum\",\"sportsdata_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"team\":\"MIN\",\"cbs_id\":\"2252822\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32789\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14948\",\"draft_team\":\"ATL\",\"birthdate\":\"872744400\",\"name\":\"Walker, Mykal\",\"draft_pick\":\"13\",\"college\":\"Fresno State\",\"rotowire_id\":\"14754\",\"height\":\"75\",\"twitter_username\":\"MykalWalker3\",\"sportsdata_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"team\":\"ATL\",\"cbs_id\":\"2865637\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32793\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14949\",\"draft_team\":\"DAL\",\"birthdate\":\"860994000\",\"name\":\"Robinson, Reggie\",\"draft_pick\":\"17\",\"college\":\"Tulsa\",\"rotowire_id\":\"14708\",\"height\":\"73\",\"twitter_username\":\"RegRobII\",\"sportsdata_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32797\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14950\",\"draft_team\":\"PHI\",\"birthdate\":\"869806800\",\"name\":\"Wallace, K'Von\",\"draft_pick\":\"21\",\"college\":\"Clemson\",\"rotowire_id\":\"14686\",\"height\":\"71\",\"twitter_username\":\"KVonWallace\",\"sportsdata_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"team\":\"PHI\",\"cbs_id\":\"2239538\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32800\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"14951\",\"draft_team\":\"MIN\",\"birthdate\":\"916808400\",\"name\":\"Lynch, James\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"14499\",\"height\":\"76\",\"twitter_username\":\"JamesHusker38\",\"sportsdata_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"team\":\"MIN\",\"cbs_id\":\"2868531\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32801\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"308\",\"id\":\"14952\",\"draft_team\":\"ARI\",\"birthdate\":\"904194000\",\"name\":\"Lawrence, Rashard\",\"draft_pick\":\"25\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14717\",\"height\":\"74\",\"twitter_username\":\"Rashard_99\",\"sportsdata_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"team\":\"ARI\",\"cbs_id\":\"2223249\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32802\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14953\",\"draft_team\":\"MIN\",\"birthdate\":\"843022800\",\"name\":\"Dye, Troy\",\"draft_pick\":\"26\",\"college\":\"Oregon\",\"rotowire_id\":\"14740\",\"height\":\"76\",\"twitter_username\":\"tdye15dbtroy\",\"sportsdata_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"team\":\"MIN\",\"cbs_id\":\"2221826\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32804\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14954\",\"draft_team\":\"ATL\",\"birthdate\":\"872485200\",\"name\":\"Hawkins, Jaylinn\",\"draft_pick\":\"28\",\"college\":\"California\",\"rotowire_id\":\"14697\",\"height\":\"74\",\"twitter_username\":\"jhawko6\",\"sportsdata_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"team\":\"ATL\",\"cbs_id\":\"2180267\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32807\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"14955\",\"draft_team\":\"JAC\",\"birthdate\":\"923288400\",\"name\":\"Scott, Josiah\",\"draft_pick\":\"31\",\"college\":\"Michigan State\",\"rotowire_id\":\"14413\",\"height\":\"70\",\"twitter_username\":\"josiahscott7\",\"sportsdata_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"team\":\"JAC\",\"cbs_id\":\"2807092\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32808\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14956\",\"draft_team\":\"KCC\",\"birthdate\":\"853822800\",\"name\":\"Sneed, L'Jarius\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14688\",\"height\":\"73\",\"sportsdata_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"team\":\"KCC\",\"cbs_id\":\"2239881\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32809\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14957\",\"draft_team\":\"LVR\",\"birthdate\":\"899701200\",\"name\":\"Robertson, Amik\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14709\",\"height\":\"69\",\"twitter_username\":\"_youngtruth7\",\"sportsdata_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"team\":\"LVR\",\"cbs_id\":\"2816298\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32810\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14958\",\"draft_team\":\"JAC\",\"birthdate\":\"878014800\",\"name\":\"Quarterman, Shaquille\",\"draft_pick\":\"34\",\"college\":\"Miami\",\"rotowire_id\":\"14747\",\"height\":\"73\",\"sportsdata_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"team\":\"JAC\",\"cbs_id\":\"2221934\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32811\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"181\",\"id\":\"14959\",\"draft_team\":\"HOU\",\"birthdate\":\"832136400\",\"name\":\"Reid, John\",\"draft_pick\":\"35\",\"college\":\"Penn State\",\"rotowire_id\":\"14710\",\"height\":\"70\",\"twitter_username\":\"John_Doe_25\",\"sportsdata_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"team\":\"HOU\",\"cbs_id\":\"2186643\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32818\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14960\",\"draft_team\":\"SEA\",\"birthdate\":\"896763600\",\"name\":\"Robinson, Alton\",\"draft_pick\":\"2\",\"college\":\"Syracuse\",\"rotowire_id\":\"14727\",\"height\":\"76\",\"sportsdata_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"team\":\"SEA\",\"cbs_id\":\"2868213\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32822\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14961\",\"draft_team\":\"CAR\",\"name\":\"Robinson, Kenny\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"rotowire_id\":\"14787\",\"height\":\"74\",\"twitter_username\":\"krob2__\",\"sportsdata_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"team\":\"CAR\",\"cbs_id\":\"2835561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32825\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"268\",\"id\":\"14962\",\"draft_team\":\"CHI\",\"birthdate\":\"866178000\",\"name\":\"Gipson, Trevis\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"rotowire_id\":\"14680\",\"height\":\"76\",\"twitter_username\":\"trevisgipson\",\"sportsdata_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"team\":\"CHI\",\"cbs_id\":\"2181277\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32827\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14963\",\"draft_team\":\"JAC\",\"birthdate\":\"899269200\",\"name\":\"Thomas, Daniel\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"14687\",\"height\":\"71\",\"twitter_username\":\"gamechanger021\",\"sportsdata_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"team\":\"JAC\",\"cbs_id\":\"2241807\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32828\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14964\",\"draft_team\":\"NYJ\",\"birthdate\":\"863326800\",\"name\":\"Hall, Bryce\",\"draft_pick\":\"12\",\"college\":\"Virginia\",\"rotowire_id\":\"14445\",\"height\":\"73\",\"sportsdata_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"team\":\"NYJ\",\"cbs_id\":\"2251254\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32829\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14965\",\"draft_team\":\"NEP\",\"birthdate\":\"849934800\",\"name\":\"Rohrwasser, Justin\",\"draft_pick\":\"13\",\"college\":\"Marshall\",\"rotowire_id\":\"14822\",\"height\":\"75\",\"sportsdata_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"team\":\"NEP\",\"cbs_id\":\"2194734\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32832\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14966\",\"draft_team\":\"WAS\",\"birthdate\":\"881384400\",\"name\":\"Hudson, Khaleke\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"14480\",\"height\":\"72\",\"twitter_username\":\"KhalekeHudson\",\"sportsdata_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"team\":\"WAS\",\"cbs_id\":\"2260652\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32833\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14967\",\"draft_team\":\"CHI\",\"birthdate\":\"881816400\",\"name\":\"Vildor, Kindle\",\"draft_pick\":\"17\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14706\",\"height\":\"71\",\"twitter_username\":\"ThePremier20\",\"sportsdata_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"team\":\"CHI\",\"cbs_id\":\"2252448\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32834\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14968\",\"draft_team\":\"MIA\",\"birthdate\":\"902120400\",\"name\":\"Weaver, Curtis\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"14409\",\"height\":\"75\",\"twitter_username\":\"curtisweaver99\",\"sportsdata_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"team\":\"MIA\",\"cbs_id\":\"2257946\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32838\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14969\",\"draft_team\":\"PHI\",\"birthdate\":\"833518800\",\"name\":\"Hightower, John\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"rotowire_id\":\"14567\",\"height\":\"74\",\"sportsdata_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"team\":\"PHI\",\"cbs_id\":\"2969061\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32839\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14970\",\"draft_team\":\"MIN\",\"name\":\"Hand, Harrison\",\"draft_pick\":\"23\",\"college\":\"Temple\",\"rotowire_id\":\"14522\",\"height\":\"72\",\"twitter_username\":\"__harry22\",\"sportsdata_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"team\":\"MIN\",\"cbs_id\":\"2868561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32840\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14971\",\"draft_team\":\"BAL\",\"birthdate\":\"849675600\",\"name\":\"Washington, Broderick\",\"draft_pick\":\"24\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14720\",\"height\":\"75\",\"sportsdata_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"team\":\"BAL\",\"cbs_id\":\"2185746\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32841\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14972\",\"draft_team\":\"HOU\",\"name\":\"Coulter, Isaiah\",\"draft_pick\":\"25\",\"college\":\"Rhode Island\",\"rotowire_id\":\"14537\",\"height\":\"75\",\"sportsdata_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"team\":\"HOU\",\"cbs_id\":\"2830035\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32842\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14973\",\"draft_team\":\"DET\",\"birthdate\":\"893048400\",\"name\":\"Huntley, Jason\",\"draft_pick\":\"26\",\"college\":\"New Mexico State\",\"rotowire_id\":\"14796\",\"height\":\"69\",\"twitter_username\":\"thejasonhuntley\",\"sportsdata_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"team\":\"DET\",\"cbs_id\":\"2239939\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32843\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14974\",\"draft_team\":\"CHI\",\"birthdate\":\"878101200\",\"name\":\"Mooney, Darnell\",\"draft_pick\":\"27\",\"college\":\"Tulane\",\"rotowire_id\":\"14510\",\"height\":\"71\",\"twitter_username\":\"Darnell_M1\",\"sportsdata_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"team\":\"CHI\",\"cbs_id\":\"2240651\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32844\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"291\",\"id\":\"14975\",\"draft_team\":\"TEN\",\"birthdate\":\"861858000\",\"name\":\"Murchison, Larrell\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14718\",\"height\":\"75\",\"twitter_username\":\"Murchboy92\",\"sportsdata_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"team\":\"TEN\",\"cbs_id\":\"2865164\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32845\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14976\",\"draft_team\":\"GBP\",\"birthdate\":\"898059600\",\"name\":\"Martin, Kamal\",\"draft_pick\":\"29\",\"college\":\"Minnesota\",\"rotowire_id\":\"14385\",\"height\":\"75\",\"twitter_username\":\"KamalMartin6\",\"sportsdata_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"team\":\"GBP\",\"cbs_id\":\"2239765\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32846\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14977\",\"draft_team\":\"MIN\",\"birthdate\":\"865918800\",\"name\":\"Osborn, K.J.\",\"draft_pick\":\"30\",\"college\":\"Miami\",\"rotowire_id\":\"14641\",\"height\":\"72\",\"sportsdata_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"team\":\"MIN\",\"cbs_id\":\"2184383\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32847\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14978\",\"draft_team\":\"KCC\",\"birthdate\":\"881211600\",\"name\":\"Danna, Michael\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"14823\",\"height\":\"74\",\"twitter_username\":\"M_Danna4\",\"sportsdata_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"team\":\"KCC\",\"cbs_id\":\"2180090\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32848\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14979\",\"draft_team\":\"DEN\",\"birthdate\":\"840603600\",\"name\":\"Strnad, Justin\",\"draft_pick\":\"32\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14757\",\"height\":\"75\",\"twitter_username\":\"jsgarbs\",\"sportsdata_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"team\":\"DEN\",\"cbs_id\":\"2186413\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32852\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14980\",\"draft_team\":\"NYG\",\"birthdate\":\"891406800\",\"name\":\"Brown, Cam\",\"draft_pick\":\"4\",\"college\":\"Penn State\",\"rotowire_id\":\"14596\",\"height\":\"77\",\"sportsdata_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"team\":\"NYG\",\"cbs_id\":\"2251294\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32854\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14981\",\"draft_team\":\"CAR\",\"birthdate\":\"845614800\",\"name\":\"Roy, Bravvion\",\"draft_pick\":\"5\",\"college\":\"Baylor\",\"rotowire_id\":\"14824\",\"height\":\"73\",\"twitter_username\":\"brave_roy\",\"sportsdata_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"team\":\"CAR\",\"cbs_id\":\"2253081\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32856\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14982\",\"draft_team\":\"LAC\",\"birthdate\":\"874472400\",\"name\":\"Gilman, Alohi\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14521\",\"height\":\"71\",\"twitter_username\":\"alohigilman\",\"sportsdata_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"team\":\"LAC\",\"cbs_id\":\"2868542\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32858\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14983\",\"draft_team\":\"BUF\",\"birthdate\":\"855896400\",\"name\":\"Bass, Tyler\",\"draft_pick\":\"9\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14609\",\"height\":\"70\",\"twitter_username\":\"tbass_xvi\",\"sportsdata_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"team\":\"BUF\",\"cbs_id\":\"2188356\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32860\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14984\",\"draft_team\":\"SFO\",\"birthdate\":\"876978000\",\"name\":\"Woerner, Charlie\",\"draft_pick\":\"11\",\"college\":\"Georgia\",\"rotowire_id\":\"14608\",\"height\":\"77\",\"sportsdata_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"team\":\"SFO\",\"cbs_id\":\"2248629\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32861\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14985\",\"draft_team\":\"NYJ\",\"birthdate\":\"880347600\",\"name\":\"Mann, Braden\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14654\",\"height\":\"71\",\"twitter_username\":\"MannBraden\",\"sportsdata_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32863\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"14986\",\"draft_team\":\"IND\",\"birthdate\":\"853304400\",\"name\":\"Windsor, Robert\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14613\",\"height\":\"77\",\"twitter_username\":\"RobertWindsor54\",\"sportsdata_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"team\":\"IND\",\"cbs_id\":\"2186647\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32864\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14987\",\"draft_team\":\"TBB\",\"birthdate\":\"840690000\",\"name\":\"Davis, Khalil\",\"draft_pick\":\"15\",\"college\":\"Nebraska\",\"rotowire_id\":\"14682\",\"height\":\"74\",\"twitter_username\":\"khalildaish95\",\"sportsdata_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"team\":\"TBB\",\"cbs_id\":\"2179622\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32866\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14988\",\"draft_team\":\"PHI\",\"birthdate\":\"860475600\",\"name\":\"Bradley, Shaun\",\"draft_pick\":\"17\",\"college\":\"Temple\",\"rotowire_id\":\"14737\",\"height\":\"73\",\"twitter_username\":\"Sdot_Bradley5\",\"sportsdata_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"team\":\"PHI\",\"cbs_id\":\"2239597\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32867\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14989\",\"draft_team\":\"DET\",\"birthdate\":\"865054800\",\"name\":\"Penisini, John\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14719\",\"height\":\"74\",\"twitter_username\":\"Dub_jayy_boy\",\"sportsdata_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"team\":\"DET\",\"cbs_id\":\"2827536\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32868\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14990\",\"draft_team\":\"PIT\",\"birthdate\":\"909550800\",\"name\":\"Brooks, Antoine\",\"draft_pick\":\"19\",\"college\":\"Maryland\",\"rotowire_id\":\"14595\",\"height\":\"71\",\"twitter_username\":\"TwanDoee\",\"sportsdata_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32869\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14991\",\"draft_team\":\"LAR\",\"birthdate\":\"888987600\",\"name\":\"Fuller, Jordan\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"14698\",\"height\":\"74\",\"twitter_username\":\"j_fuller4\",\"sportsdata_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"team\":\"LAR\",\"cbs_id\":\"2260978\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32870\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14992\",\"draft_team\":\"PHI\",\"birthdate\":\"897368400\",\"name\":\"Watkins, Quez\",\"draft_pick\":\"21\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"14464\",\"height\":\"74\",\"twitter_username\":\"AdamSchefter\",\"sportsdata_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"team\":\"PHI\",\"cbs_id\":\"2262953\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32872\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14993\",\"draft_team\":\"ARI\",\"birthdate\":\"902811600\",\"name\":\"Weaver, Evan\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"14752\",\"height\":\"75\",\"twitter_username\":\"Weavin_it\",\"sportsdata_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"team\":\"ARI\",\"cbs_id\":\"2250836\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32874\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"248\",\"id\":\"14994\",\"draft_team\":\"NEP\",\"birthdate\":\"907390800\",\"name\":\"Maluia, Cassh\",\"draft_pick\":\"25\",\"college\":\"Wyoming\",\"rotowire_id\":\"14826\",\"height\":\"72\",\"twitter_username\":\"cassh7mula\",\"sportsdata_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"team\":\"NEP\",\"cbs_id\":\"2258320\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32875\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14995\",\"draft_team\":\"MIN\",\"birthdate\":\"885358800\",\"name\":\"Metellus, Josh\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"rotowire_id\":\"14479\",\"height\":\"72\",\"twitter_username\":\"NoExcuses_23\",\"sportsdata_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"team\":\"MIN\",\"cbs_id\":\"2260662\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32876\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14996\",\"draft_team\":\"JAC\",\"birthdate\":\"859957200\",\"name\":\"Davis, Tyler\",\"draft_pick\":\"27\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14827\",\"height\":\"76\",\"twitter_username\":\"Tyler_Davis9\",\"sportsdata_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"team\":\"JAC\",\"cbs_id\":\"2182811\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32881\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"14997\",\"draft_team\":\"IND\",\"birthdate\":\"884149200\",\"name\":\"Rodgers, Isaiah\",\"draft_pick\":\"32\",\"college\":\"Massachusetts\",\"rotowire_id\":\"14828\",\"height\":\"70\",\"twitter_username\":\"rodgers_isaiah\",\"sportsdata_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"team\":\"IND\",\"cbs_id\":\"2261492\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32882\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14998\",\"draft_team\":\"IND\",\"birthdate\":\"902379600\",\"name\":\"Patmon, Dezmon\",\"draft_pick\":\"33\",\"college\":\"Washington State\",\"rotowire_id\":\"14643\",\"height\":\"76\",\"twitter_username\":\"dadpat7\",\"sportsdata_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"team\":\"IND\",\"cbs_id\":\"2221990\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32883\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"226\",\"id\":\"14999\",\"draft_team\":\"IND\",\"birthdate\":\"835938000\",\"name\":\"Glasgow, Jordan\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"14799\",\"height\":\"73\",\"sportsdata_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"team\":\"IND\",\"cbs_id\":\"2185709\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32885\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15000\",\"draft_team\":\"CIN\",\"birthdate\":\"857710800\",\"name\":\"Bailey, Markus\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"rotowire_id\":\"14736\",\"height\":\"73\",\"twitter_username\":\"mb_boiler21\",\"sportsdata_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"team\":\"CIN\",\"cbs_id\":\"2183896\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32886\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"15001\",\"draft_team\":\"WAS\",\"birthdate\":\"922856400\",\"name\":\"Curl, Kamren\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"rotowire_id\":\"14381\",\"height\":\"74\",\"twitter_username\":\"KCurl_2\",\"sportsdata_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"team\":\"WAS\",\"cbs_id\":\"2866171\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32888\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"15002\",\"draft_team\":\"NYG\",\"birthdate\":\"869461200\",\"name\":\"Coughlin, Carter\",\"draft_pick\":\"4\",\"college\":\"Minnesota\",\"rotowire_id\":\"14580\",\"height\":\"76\",\"twitter_username\":\"Cmoe34\",\"sportsdata_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"team\":\"NYG\",\"cbs_id\":\"2239754\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32889\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15003\",\"draft_team\":\"BAL\",\"birthdate\":\"924498000\",\"name\":\"Stone, Geno\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"14474\",\"height\":\"71\",\"twitter_username\":\"GenoStone22\",\"sportsdata_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"team\":\"BAL\",\"cbs_id\":\"2867170\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32891\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"184\",\"id\":\"15004\",\"draft_team\":\"CAR\",\"birthdate\":\"896936400\",\"name\":\"Thomas-Oliver, Stantley\",\"draft_pick\":\"7\",\"college\":\"Florida International\",\"rotowire_id\":\"14707\",\"height\":\"74\",\"twitter_username\":\"__Alcatraz21\",\"sportsdata_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"team\":\"CAR\",\"cbs_id\":\"2262783\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32895\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15005\",\"draft_team\":\"MIN\",\"birthdate\":\"869547600\",\"name\":\"Willekes, Kenny\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"14732\",\"height\":\"76\",\"twitter_username\":\"kennyw97\",\"sportsdata_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"team\":\"MIN\",\"cbs_id\":\"2186438\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32898\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"15006\",\"draft_team\":\"ATL\",\"birthdate\":\"849762000\",\"name\":\"Hofrichter, Sterling\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"rotowire_id\":\"14653\",\"height\":\"69\",\"twitter_username\":\"shofrichter10\",\"sportsdata_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"team\":\"ATL\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32899\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"15007\",\"draft_team\":\"WAS\",\"birthdate\":\"870238800\",\"name\":\"Smith-Williams, James\",\"draft_pick\":\"15\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14729\",\"height\":\"75\",\"twitter_username\":\"jacsw3\",\"sportsdata_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"team\":\"WAS\",\"cbs_id\":\"2179368\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32901\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15008\",\"draft_team\":\"DAL\",\"birthdate\":\"848811600\",\"name\":\"DiNucci, Ben\",\"draft_pick\":\"17\",\"college\":\"James Madison\",\"rotowire_id\":\"14832\",\"height\":\"75\",\"twitter_username\":\"B_DiNucci6\",\"sportsdata_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"team\":\"DAL\",\"cbs_id\":\"2179411\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32902\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"15009\",\"draft_team\":\"PIT\",\"birthdate\":\"840690000\",\"name\":\"Davis, Carlos\",\"draft_pick\":\"18\",\"college\":\"Nebraska\",\"rotowire_id\":\"14681\",\"height\":\"74\",\"sportsdata_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"team\":\"PIT\",\"cbs_id\":\"2179621\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32903\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"247\",\"id\":\"15010\",\"draft_team\":\"PHI\",\"name\":\"Toohill, Casey\",\"draft_pick\":\"19\",\"college\":\"Stanford\",\"rotowire_id\":\"14753\",\"height\":\"76\",\"twitter_username\":\"CaseyToohill\",\"sportsdata_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"team\":\"PHI\",\"cbs_id\":\"2186841\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32904\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"232\",\"id\":\"15011\",\"draft_team\":\"LAR\",\"birthdate\":\"839480400\",\"name\":\"Johnston, Clay\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"rotowire_id\":\"14743\",\"height\":\"73\",\"twitter_username\":\"C_Johnston4\",\"sportsdata_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"team\":\"LAR\",\"cbs_id\":\"2189507\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32905\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"285\",\"id\":\"15012\",\"draft_team\":\"DET\",\"birthdate\":\"851922000\",\"name\":\"Cornell, Jashon\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"14833\",\"height\":\"75\",\"twitter_username\":\"JayRock_9\",\"sportsdata_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"team\":\"DET\",\"cbs_id\":\"2179802\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32906\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"15013\",\"draft_team\":\"GBP\",\"birthdate\":\"873954000\",\"name\":\"Scott, Vernon\",\"draft_pick\":\"22\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14779\",\"height\":\"74\",\"twitter_username\":\"OfficialVern_\",\"sportsdata_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"team\":\"GBP\",\"cbs_id\":\"2240340\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32907\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"15014\",\"draft_team\":\"KCC\",\"birthdate\":\"879051600\",\"name\":\"Keyes, Thakarius\",\"draft_pick\":\"23\",\"college\":\"Tulane\",\"rotowire_id\":\"14579\",\"height\":\"73\",\"twitter_username\":\"TzKeyes\",\"sportsdata_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32908\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15015\",\"draft_team\":\"NYG\",\"birthdate\":\"881125200\",\"name\":\"Brunson, T.J.\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"rotowire_id\":\"14834\",\"height\":\"73\",\"sportsdata_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"team\":\"NYG\",\"cbs_id\":\"2252794\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32909\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15016\",\"draft_team\":\"BUF\",\"birthdate\":\"849243600\",\"name\":\"Jackson, Dane\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14549\",\"height\":\"71\",\"twitter_username\":\"Djack11_\",\"sportsdata_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"team\":\"BUF\",\"cbs_id\":\"2179418\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32910\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15017\",\"draft_team\":\"NOS\",\"birthdate\":\"850626000\",\"name\":\"Stevens, Tommy\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14527\",\"height\":\"77\",\"sportsdata_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"team\":\"NOS\",\"cbs_id\":\"2179839\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32911\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15018\",\"draft_team\":\"TBB\",\"birthdate\":\"853736400\",\"name\":\"Russell, Chapelle\",\"draft_pick\":\"27\",\"college\":\"Temple\",\"rotowire_id\":\"14755\",\"height\":\"73\",\"twitter_username\":\"DeuceRussell36\",\"sportsdata_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"team\":\"TBB\",\"cbs_id\":\"2186632\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32912\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15019\",\"draft_team\":\"GBP\",\"birthdate\":\"933138000\",\"name\":\"Garvin, Jonathan\",\"draft_pick\":\"28\",\"college\":\"Miami\",\"rotowire_id\":\"14365\",\"height\":\"76\",\"sportsdata_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"team\":\"GBP\",\"cbs_id\":\"2804100\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32913\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"186\",\"id\":\"15020\",\"draft_team\":\"TEN\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Chris\",\"draft_pick\":\"29\",\"college\":\"Marshall\",\"rotowire_id\":\"14835\",\"height\":\"72\",\"sportsdata_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"team\":\"TEN\",\"cbs_id\":\"3679\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32915\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15021\",\"draft_team\":\"TBB\",\"birthdate\":\"891493200\",\"name\":\"Calais, Raymond\",\"draft_pick\":\"31\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"14625\",\"height\":\"69\",\"twitter_username\":\"king_calais\",\"sportsdata_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"team\":\"TBB\",\"cbs_id\":\"2252175\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32916\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15022\",\"draft_team\":\"MIA\",\"birthdate\":\"861426000\",\"name\":\"Perry, Malcolm\",\"draft_pick\":\"32\",\"college\":\"Navy\",\"rotowire_id\":\"14504\",\"height\":\"69\",\"sportsdata_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"team\":\"MIA\",\"cbs_id\":\"2251971\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32917\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15023\",\"draft_team\":\"NYG\",\"birthdate\":\"864018000\",\"name\":\"Williamson, Chris\",\"draft_pick\":\"33\",\"college\":\"Minnesota\",\"rotowire_id\":\"14836\",\"height\":\"72\",\"sportsdata_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"team\":\"NYG\",\"cbs_id\":\"2180451\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32918\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15024\",\"draft_team\":\"LAR\",\"birthdate\":\"874645200\",\"name\":\"Sloman, Sam\",\"draft_pick\":\"34\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14837\",\"height\":\"68\",\"twitter_username\":\"ssloman118\",\"sportsdata_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"team\":\"LAR\",\"cbs_id\":\"2240109\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32919\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15025\",\"draft_team\":\"MIN\",\"birthdate\":\"860043600\",\"name\":\"Cole, Brian\",\"draft_pick\":\"35\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14620\",\"height\":\"74\",\"sportsdata_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"team\":\"MIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32921\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"15026\",\"draft_team\":\"SEA\",\"birthdate\":\"849157200\",\"name\":\"Sullivan, Stephen\",\"draft_pick\":\"37\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14570\",\"height\":\"77\",\"twitter_username\":\"SJS_10\",\"sportsdata_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"team\":\"SEA\",\"cbs_id\":\"2223251\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32922\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15027\",\"draft_team\":\"DEN\",\"birthdate\":\"874731600\",\"name\":\"Cleveland, Tyrie\",\"draft_pick\":\"38\",\"college\":\"Florida\",\"rotowire_id\":\"14621\",\"height\":\"74\",\"sportsdata_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"team\":\"DEN\",\"cbs_id\":\"2248604\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32923\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15028\",\"draft_team\":\"DEN\",\"birthdate\":\"837061200\",\"name\":\"Tuszka, Derrek\",\"draft_pick\":\"40\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14731\",\"height\":\"77\",\"sportsdata_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"team\":\"DEN\",\"cbs_id\":\"2190767\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32924\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15029\",\"draft_team\":\"NYG\",\"birthdate\":\"858142800\",\"name\":\"Crowder, Tae\",\"draft_pick\":\"41\",\"college\":\"Georgia\",\"rotowire_id\":\"14839\",\"height\":\"75\",\"twitter_username\":\"TaeCrowder\",\"sportsdata_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"team\":\"NYG\",\"cbs_id\":\"2180461\"},{\"draft_year\":\"2018\",\"birthdate\":\"826174800\",\"draft_team\":\"FA\",\"stats_id\":\"31744\",\"position\":\"LB\",\"name\":\"Gates, DeMarquis\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13942\",\"weight\":\"221\",\"sportsdata_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"id\":\"15030\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32358\",\"position\":\"PN\",\"name\":\"Fox, Jack\",\"college\":\"Rice\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13715\",\"jersey\":\"6\",\"weight\":\"224\",\"sportsdata_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"id\":\"15032\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"746773200\",\"draft_team\":\"FA\",\"stats_id\":\"32664\",\"position\":\"WR\",\"name\":\"Begelton, Reggie\",\"college\":\"Lamar\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14472\",\"weight\":\"200\",\"sportsdata_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"id\":\"15033\",\"team\":\"GBP\",\"cbs_id\":\"3157671\"},{\"draft_year\":\"2020\",\"birthdate\":\"890974800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33109\",\"position\":\"WR\",\"name\":\"Callaway, Marquez\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14556\",\"weight\":\"204\",\"id\":\"15034\",\"team\":\"NOS\",\"cbs_id\":\"2247505\"},{\"draft_year\":\"2018\",\"birthdate\":\"813819600\",\"draft_team\":\"FA\",\"stats_id\":\"31803\",\"position\":\"QB\",\"name\":\"Wolford, John\",\"college\":\"Wake Forest\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13403\",\"jersey\":\"9\",\"weight\":\"200\",\"sportsdata_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"id\":\"15035\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"843541200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Smith, J'mar\",\"college\":\"Louisiana Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14845\",\"weight\":\"218\",\"id\":\"15036\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"876114000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32946\",\"position\":\"WR\",\"name\":\"Lipscomb, Kalija\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14640\",\"weight\":\"200\",\"sportsdata_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"id\":\"15037\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"birthdate\":\"850626000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33132\",\"position\":\"WR\",\"name\":\"Bayless, Omar\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14585\",\"weight\":\"207\",\"sportsdata_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"id\":\"15038\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"895726800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33095\",\"position\":\"WR\",\"name\":\"Parker, Aaron\",\"college\":\"Rhode Island\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14642\",\"weight\":\"191\",\"sportsdata_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"id\":\"15039\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Williams, Ty'Son\",\"college\":\"Brigham Young\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14404\",\"weight\":\"220\",\"id\":\"15040\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"872053200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33329\",\"position\":\"WR\",\"name\":\"Cager, Lawrence\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14597\",\"weight\":\"220\",\"sportsdata_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"id\":\"15041\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"birthdate\":\"875595600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33088\",\"position\":\"RB\",\"name\":\"Ward, Jonathan\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"15106\",\"weight\":\"202\",\"sportsdata_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"id\":\"15042\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"838702800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33017\",\"position\":\"WR\",\"name\":\"Hastings, Will\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14762\",\"weight\":\"174\",\"sportsdata_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"id\":\"15043\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33345\",\"position\":\"RB\",\"name\":\"Scarlett, Cameron\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14887\",\"weight\":\"216\",\"sportsdata_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"id\":\"15044\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"birthdate\":\"880002000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32994\",\"position\":\"TE\",\"name\":\"Breeland, Jacob\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14628\",\"weight\":\"250\",\"sportsdata_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"id\":\"15045\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852440400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33242\",\"position\":\"WR\",\"name\":\"Merritt, Kirk\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14861\",\"weight\":\"210\",\"sportsdata_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"id\":\"15046\",\"team\":\"MIA\"},{\"draft_year\":\"2016\",\"birthdate\":\"719730000\",\"draft_team\":\"FA\",\"stats_id\":\"29925\",\"position\":\"CB\",\"name\":\"Roberson, Tre\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"11506\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"id\":\"15047\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33330\",\"position\":\"WR\",\"name\":\"Campbell, George\",\"college\":\"West Virginia\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14944\",\"weight\":\"183\",\"sportsdata_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"id\":\"15048\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33108\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15049\",\"draft_team\":\"FA\",\"birthdate\":\"888469200\",\"name\":\"Bachie, Joe\",\"college\":\"Michigan State\",\"rotowire_id\":\"14735\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"team\":\"NOS\"},{\"draft_year\":\"2020\",\"birthdate\":\"890802000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33096\",\"position\":\"TE\",\"name\":\"Taumoepeau, Charlie\",\"college\":\"Portland State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14633\",\"weight\":\"245\",\"sportsdata_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"id\":\"15050\",\"team\":\"DAL\"}]},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849580, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0, namelookup = 7.7e-05, 
+    connect = 7.9e-05, pretransfer = 0.00022, starttransfer = 0.758315, 
+    total = 0.934826)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-a5f4e1.R b/tests/testthat/api.myfantasyleague.com/2020/export-a5f4e1.R
index c15de2c5..034f16de 100644
--- a/tests/testthat/api.myfantasyleague.com/2020/export-a5f4e1.R
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-a5f4e1.R
@@ -1,24 +1,24 @@
 structure(list(url = "https://www61.myfantasyleague.com/2020/export?TYPE=draftResults&L=54040&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Fri, 10 Jul 2020 15:53:36 GMT", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:29:13 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
-        `content-length` = "984", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+        `content-length` = "1059", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
     "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Fri, 10 Jul 2020 15:53:36 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:13 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             location = "https://www61.myfantasyleague.com/2020/export?TYPE=draftResults&L=54040&JSON=1", 
             `content-length` = "0", targethost = "www70"), class = c("insensitive", 
         "list"))), list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Fri, 10 Jul 2020 15:53:36 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:13 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
-            `content-length` = "984", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+            `content-length` = "1059", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
         "list")))), cookies = structure(list(domain = logical(0), 
         flag = logical(0), path = logical(0), secure = logical(0), 
         expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
-    content = charToRaw("{\"draftResults\":{\"draftUnit\":{\"unit\":\"LEAGUE\",\"draftType\":\"SAME\",\"draftPick\":[{\"timestamp\":\"1589571836\",\"franchise\":\"0001\",\"round\":\"01\",\"player\":\"14803\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1589572398\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"14802\",\"pick\":\"02\",\"comments\":\"[Pick traded from Team Yoshi.] \"},{\"timestamp\":\"1589572704\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"14797\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.\\nPick traded from Team Mewtwo.] \"},{\"timestamp\":\"1589577599\",\"franchise\":\"0013\",\"round\":\"01\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"[Pick traded from Team Simon Belmont.] \"},{\"timestamp\":\"1589597244\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"14799\",\"pick\":\"05\",\"comments\":\"[Pick traded from Team Captain Falcon.\\nPick traded from Team Mewtwo.] \"},{\"timestamp\":\"1589597295\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"14833\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.\\nPick traded from Team Yoshi.] \"},{\"timestamp\":\"1589601839\",\"franchise\":\"0011\",\"round\":\"01\",\"player\":\"14832\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1589612448\",\"franchise\":\"0007\",\"round\":\"01\",\"player\":\"14839\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1589632728\",\"franchise\":\"0006\",\"round\":\"01\",\"player\":\"14836\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1589636849\",\"franchise\":\"0006\",\"round\":\"01\",\"player\":\"14834\",\"pick\":\"10\",\"comments\":\"[Pick traded from Team Luigi.] \"},{\"timestamp\":\"1589646837\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"14835\",\"pick\":\"11\",\"comments\":\"[Pick traded from Team Ness.] \"},{\"timestamp\":\"1589650867\",\"franchise\":\"0004\",\"round\":\"01\",\"player\":\"14840\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1589651894\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"14846\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.] \"},{\"timestamp\":\"1589656374\",\"franchise\":\"0001\",\"round\":\"01\",\"player\":\"14777\",\"pick\":\"14\",\"comments\":\"[Pick traded from Team Fox.] \"},{\"timestamp\":\"1589658876\",\"franchise\":\"0003\",\"round\":\"01\",\"player\":\"14778\",\"pick\":\"15\",\"comments\":\"[Pick added by commissioner.] \"},{\"timestamp\":\"1589661092\",\"franchise\":\"0013\",\"round\":\"02\",\"player\":\"14842\",\"pick\":\"01\",\"comments\":\"[Pick traded from Team Pikachu.] \"},{\"timestamp\":\"1589663391\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"14838\",\"pick\":\"02\",\"comments\":\"[Pick traded from Team Yoshi.] \"},{\"timestamp\":\"1589665598\",\"franchise\":\"0006\",\"round\":\"02\",\"player\":\"14810\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"1589676917\",\"franchise\":\"0002\",\"round\":\"02\",\"player\":\"14805\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1589679157\",\"franchise\":\"0003\",\"round\":\"02\",\"player\":\"14798\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1589682285\",\"franchise\":\"0005\",\"round\":\"02\",\"player\":\"14852\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.] \"},{\"timestamp\":\"1589691602\",\"franchise\":\"0011\",\"round\":\"02\",\"player\":\"14841\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1589692871\",\"franchise\":\"0010\",\"round\":\"02\",\"player\":\"14844\",\"pick\":\"08\",\"comments\":\"[Pick traded from Team Kirby.] \"},{\"timestamp\":\"1589723867\",\"franchise\":\"0006\",\"round\":\"02\",\"player\":\"14936\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1589724519\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"14837\",\"pick\":\"10\",\"comments\":\"[Pick traded from Team Luigi.] \"},{\"timestamp\":\"1589724549\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"14779\",\"pick\":\"11\",\"comments\":\"[Pick traded from Team Ness.] \"},{\"timestamp\":\"1589730316\",\"franchise\":\"0013\",\"round\":\"02\",\"player\":\"14808\",\"pick\":\"12\",\"comments\":\"[Pick traded from Team Ice Climbers.] \"},{\"timestamp\":\"1589736992\",\"franchise\":\"0012\",\"round\":\"02\",\"player\":\"14867\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.] \"},{\"timestamp\":\"1589743510\",\"franchise\":\"0002\",\"round\":\"02\",\"player\":\"14804\",\"pick\":\"14\",\"comments\":\"[Pick traded from Team Fox.\\nPick traded from Team Mewtwo.] \"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"03\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"03\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"03\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.] \"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"03\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"[Pick traded from Team Simon Belmont.\\nPick traded from Team Mewtwo.\\nPick traded from Team Yoshi.] \"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"03\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"03\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.] \"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"03\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"[Pick traded from Team Diddy Kong.] \"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"03\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"[Pick traded from Team Kirby.] \"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"03\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"03\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"[Pick traded from Team Luigi.] \"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"03\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"[Pick traded from Team Ness.] \"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"03\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"03\",\"player\":\"\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"03\",\"player\":\"\",\"pick\":\"14\",\"comments\":\"[Pick traded from Team Fox.] \"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"[Pick traded from Team Pikachu.] \"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"04\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"04\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"[Pick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"04\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"04\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.] \"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"04\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"[Pick traded from Team Diddy Kong.] \"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"04\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"04\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"04\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"04\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"04\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"[Pick traded from Team Ice Climbers.] \"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"04\",\"player\":\"\",\"pick\":\"14\",\"comments\":\"\"}],\"round1DraftOrder\":\"0001,0012,0010,0013,0010,0012,0011,0007,0006,0006,0012,0004,0010,0001,0003,\"}},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"), 
-    date = structure(1594396416, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0.216626, namelookup = 0.003642, 
-    connect = 0.061439, pretransfer = 0.182784, starttransfer = 0.476571, 
-    total = 0.476759)), class = "response")
+    content = charToRaw("{\"draftResults\":{\"draftUnit\":{\"unit\":\"LEAGUE\",\"draftType\":\"SAME\",\"draftPick\":[{\"timestamp\":\"1589571836\",\"franchise\":\"0001\",\"round\":\"01\",\"player\":\"14803\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"1589572398\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"14802\",\"pick\":\"02\",\"comments\":\"[Pick traded from Team Yoshi.] \"},{\"timestamp\":\"1589572704\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"14797\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.\\nPick traded from Team Mewtwo.] \"},{\"timestamp\":\"1589577599\",\"franchise\":\"0013\",\"round\":\"01\",\"player\":\"14800\",\"pick\":\"04\",\"comments\":\"[Pick traded from Team Simon Belmont.] \"},{\"timestamp\":\"1589597244\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"14799\",\"pick\":\"05\",\"comments\":\"[Pick traded from Team Captain Falcon.\\nPick traded from Team Mewtwo.] \"},{\"timestamp\":\"1589597295\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"14833\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.\\nPick traded from Team Yoshi.] \"},{\"timestamp\":\"1589601839\",\"franchise\":\"0011\",\"round\":\"01\",\"player\":\"14832\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1589612448\",\"franchise\":\"0007\",\"round\":\"01\",\"player\":\"14839\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"1589632728\",\"franchise\":\"0006\",\"round\":\"01\",\"player\":\"14836\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1589636849\",\"franchise\":\"0006\",\"round\":\"01\",\"player\":\"14834\",\"pick\":\"10\",\"comments\":\"[Pick traded from Team Luigi.] \"},{\"timestamp\":\"1589646837\",\"franchise\":\"0012\",\"round\":\"01\",\"player\":\"14835\",\"pick\":\"11\",\"comments\":\"[Pick traded from Team Ness.] \"},{\"timestamp\":\"1589650867\",\"franchise\":\"0004\",\"round\":\"01\",\"player\":\"14840\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"1589651894\",\"franchise\":\"0010\",\"round\":\"01\",\"player\":\"14846\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.] \"},{\"timestamp\":\"1589656374\",\"franchise\":\"0001\",\"round\":\"01\",\"player\":\"14777\",\"pick\":\"14\",\"comments\":\"[Pick traded from Team Fox.] \"},{\"timestamp\":\"1589658876\",\"franchise\":\"0003\",\"round\":\"01\",\"player\":\"14778\",\"pick\":\"15\",\"comments\":\"[Pick added by commissioner.] \"},{\"timestamp\":\"1589661092\",\"franchise\":\"0013\",\"round\":\"02\",\"player\":\"14842\",\"pick\":\"01\",\"comments\":\"[Pick traded from Team Pikachu.] \"},{\"timestamp\":\"1589663391\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"14838\",\"pick\":\"02\",\"comments\":\"[Pick traded from Team Yoshi.] \"},{\"timestamp\":\"1589665598\",\"franchise\":\"0006\",\"round\":\"02\",\"player\":\"14810\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"1589676917\",\"franchise\":\"0002\",\"round\":\"02\",\"player\":\"14805\",\"pick\":\"04\",\"comments\":\"\"},{\"timestamp\":\"1589679157\",\"franchise\":\"0003\",\"round\":\"02\",\"player\":\"14798\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"1589682285\",\"franchise\":\"0005\",\"round\":\"02\",\"player\":\"14852\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.] \"},{\"timestamp\":\"1589691602\",\"franchise\":\"0011\",\"round\":\"02\",\"player\":\"14841\",\"pick\":\"07\",\"comments\":\"\"},{\"timestamp\":\"1589692871\",\"franchise\":\"0010\",\"round\":\"02\",\"player\":\"14844\",\"pick\":\"08\",\"comments\":\"[Pick traded from Team Kirby.] \"},{\"timestamp\":\"1589723867\",\"franchise\":\"0006\",\"round\":\"02\",\"player\":\"14936\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"1589724519\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"14837\",\"pick\":\"10\",\"comments\":\"[Pick traded from Team Luigi.] \"},{\"timestamp\":\"1589724549\",\"franchise\":\"0001\",\"round\":\"02\",\"player\":\"14779\",\"pick\":\"11\",\"comments\":\"[Pick traded from Team Ness.] \"},{\"timestamp\":\"1589730316\",\"franchise\":\"0013\",\"round\":\"02\",\"player\":\"14808\",\"pick\":\"12\",\"comments\":\"[Pick traded from Team Ice Climbers.] \"},{\"timestamp\":\"1589736992\",\"franchise\":\"0012\",\"round\":\"02\",\"player\":\"14867\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.] \"},{\"timestamp\":\"1589743510\",\"franchise\":\"0002\",\"round\":\"02\",\"player\":\"14804\",\"pick\":\"14\",\"comments\":\"[Pick traded from Team Fox.\\nPick traded from Team Mewtwo.] \"},{\"timestamp\":\"\",\"franchise\":\"0001\",\"round\":\"03\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"03\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"03\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.] \"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"03\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"[Pick traded from Team Simon Belmont.\\nPick traded from Team Mewtwo.\\nPick traded from Team Yoshi.] \"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"03\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"03\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.] \"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"03\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"[Pick traded from Team Diddy Kong.] \"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"03\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"[Pick traded from Team Kirby.] \"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"03\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"03\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"[Pick traded from Team Luigi.] \"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"03\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"[Pick traded from Team Ness.] \"},{\"timestamp\":\"\",\"franchise\":\"0004\",\"round\":\"03\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"03\",\"player\":\"\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"03\",\"player\":\"\",\"pick\":\"14\",\"comments\":\"[Pick traded from Team Fox.] \"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"\",\"pick\":\"01\",\"comments\":\"[Pick traded from Team Pikachu.] \"},{\"timestamp\":\"\",\"franchise\":\"0010\",\"round\":\"04\",\"player\":\"\",\"pick\":\"02\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"\",\"pick\":\"03\",\"comments\":\"[Pick traded from Team Dr. Mario.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"04\",\"player\":\"\",\"pick\":\"04\",\"comments\":\"[Pick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0003\",\"round\":\"04\",\"player\":\"\",\"pick\":\"05\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0005\",\"round\":\"04\",\"player\":\"\",\"pick\":\"06\",\"comments\":\"[Pick traded from Team Mewtwo.] \"},{\"timestamp\":\"\",\"franchise\":\"0002\",\"round\":\"04\",\"player\":\"\",\"pick\":\"07\",\"comments\":\"[Pick traded from Team Diddy Kong.] \"},{\"timestamp\":\"\",\"franchise\":\"0007\",\"round\":\"04\",\"player\":\"\",\"pick\":\"08\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0006\",\"round\":\"04\",\"player\":\"\",\"pick\":\"09\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"04\",\"player\":\"\",\"pick\":\"10\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0013\",\"round\":\"04\",\"player\":\"\",\"pick\":\"11\",\"comments\":\"\"},{\"timestamp\":\"\",\"franchise\":\"0014\",\"round\":\"04\",\"player\":\"\",\"pick\":\"12\",\"comments\":\"[Pick traded from Team Ice Climbers.] \"},{\"timestamp\":\"\",\"franchise\":\"0012\",\"round\":\"04\",\"player\":\"\",\"pick\":\"13\",\"comments\":\"[Pick traded from Team Link.\\nPick traded from Team Simon Belmont.] \"},{\"timestamp\":\"\",\"franchise\":\"0008\",\"round\":\"04\",\"player\":\"\",\"pick\":\"14\",\"comments\":\"\"}],\"static_url\":\"https://www61.myfantasyleague.com/fflnetdynamic2020/54040_LEAGUE_draft_results.xml\",\"round1DraftOrder\":\"0001,0012,0010,0013,0010,0012,0011,0007,0006,0006,0012,0004,0010,0001,0003,\"}},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849353, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.138511, namelookup = 0.001543, 
+    connect = 0.053813, pretransfer = 0.130673, starttransfer = 0.427656, 
+    total = 0.427864)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-cc192d.R b/tests/testthat/api.myfantasyleague.com/2020/export-cc192d.R
new file mode 100644
index 00000000..c282c5da
--- /dev/null
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-cc192d.R
@@ -0,0 +1,25 @@
+structure(list(url = "https://www57.myfantasyleague.com/2020/export?TYPE=players&L=37920&DETAILS=1&JSON=1", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:34:14 GMT", 
+        server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+        vary = "Accept-Encoding", `content-encoding` = "gzip", 
+        `content-type` = "application/json; charset=utf-8", `transfer-encoding` = "chunked"), class = c("insensitive", 
+    "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:14 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            location = "https://www57.myfantasyleague.com/2020/export?TYPE=players&L=37920&DETAILS=1&JSON=1", 
+            `content-length` = "0", targethost = "www70"), class = c("insensitive", 
+        "list"))), list(status = 200L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:14 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            vary = "Accept-Encoding", `content-encoding` = "gzip", 
+            `content-type` = "application/json; charset=utf-8", 
+            `transfer-encoding` = "chunked"), class = c("insensitive", 
+        "list")))), cookies = structure(list(domain = logical(0), 
+        flag = logical(0), path = logical(0), secure = logical(0), 
+        expiration = structure(numeric(0), class = c("POSIXct", 
+        "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
+    content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"1595849628\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"stats_id\":\"2\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"twitter_username\":\"buffalobills\",\"id\":\"0501\",\"team\":\"BUF\",\"cbs_id\":\"409\",\"fleaflicker_id\":\"2331\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"stats_id\":\"11\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"twitter_username\":\"nflcolts\",\"id\":\"0502\",\"team\":\"IND\",\"cbs_id\":\"402\",\"fleaflicker_id\":\"2341\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"stats_id\":\"15\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"twitter_username\":\"MiamiDolphins\",\"id\":\"0503\",\"team\":\"MIA\",\"cbs_id\":\"404\",\"fleaflicker_id\":\"2344\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"stats_id\":\"17\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"twitter_username\":\"patriots\",\"id\":\"0504\",\"team\":\"NEP\",\"cbs_id\":\"406\",\"fleaflicker_id\":\"2346\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"stats_id\":\"20\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"nyjets\",\"id\":\"0505\",\"team\":\"NYJ\",\"cbs_id\":\"410\",\"fleaflicker_id\":\"2349\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"stats_id\":\"4\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"twitter_username\":\"Bengals\",\"id\":\"0506\",\"team\":\"CIN\",\"cbs_id\":\"426\",\"fleaflicker_id\":\"2334\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"stats_id\":\"5\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"twitter_username\":\"OfficialBrowns\",\"id\":\"0507\",\"team\":\"CLE\",\"cbs_id\":\"419\",\"fleaflicker_id\":\"2335\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"stats_id\":\"10\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"twitter_username\":\"tennesseetitans\",\"id\":\"0508\",\"team\":\"TEN\",\"cbs_id\":\"431\",\"fleaflicker_id\":\"2358\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"stats_id\":\"30\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"twitter_username\":\"jaguarsinsider\",\"id\":\"0509\",\"team\":\"JAC\",\"cbs_id\":\"422\",\"fleaflicker_id\":\"2342\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"stats_id\":\"23\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"twitter_username\":\"steelers\",\"id\":\"0510\",\"team\":\"PIT\",\"cbs_id\":\"413\",\"fleaflicker_id\":\"2352\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"stats_id\":\"7\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"twitter_username\":\"DenverBroncos\",\"id\":\"0511\",\"team\":\"DEN\",\"cbs_id\":\"428\",\"fleaflicker_id\":\"2337\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"stats_id\":\"12\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"twitter_username\":\"kcchiefs\",\"id\":\"0512\",\"team\":\"KCC\",\"cbs_id\":\"403\",\"fleaflicker_id\":\"2343\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"stats_id\":\"13\",\"position\":\"Def\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"twitter_username\":\"raiders\",\"id\":\"0513\",\"team\":\"LVR\",\"cbs_id\":\"424\",\"fleaflicker_id\":\"2350\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"stats_id\":\"24\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"chargers\",\"id\":\"0514\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"stats_id\":\"26\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"twitter_username\":\"seahawks\",\"id\":\"0515\",\"team\":\"SEA\",\"cbs_id\":\"416\",\"fleaflicker_id\":\"2354\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"stats_id\":\"6\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"twitter_username\":\"dallascowboys\",\"id\":\"0516\",\"team\":\"DAL\",\"cbs_id\":\"427\",\"fleaflicker_id\":\"2336\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"stats_id\":\"19\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"giants\",\"id\":\"0517\",\"team\":\"NYG\",\"cbs_id\":\"408\",\"fleaflicker_id\":\"2348\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"stats_id\":\"21\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"twitter_username\":\"Eagles\",\"id\":\"0518\",\"team\":\"PHI\",\"cbs_id\":\"411\",\"fleaflicker_id\":\"2351\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"stats_id\":\"22\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"twitter_username\":\"AZCardinals\",\"id\":\"0519\",\"team\":\"ARI\",\"cbs_id\":\"412\",\"fleaflicker_id\":\"2328\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"stats_id\":\"28\",\"position\":\"Def\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"twitter_username\":\"Redskins\",\"id\":\"0520\",\"team\":\"WAS\",\"cbs_id\":\"418\",\"fleaflicker_id\":\"2359\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"stats_id\":\"3\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"twitter_username\":\"ChicagoBears\",\"id\":\"0521\",\"team\":\"CHI\",\"cbs_id\":\"421\",\"fleaflicker_id\":\"2333\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"stats_id\":\"8\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"twitter_username\":\"detroitlionsnfl\",\"id\":\"0522\",\"team\":\"DET\",\"cbs_id\":\"429\",\"fleaflicker_id\":\"2338\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"stats_id\":\"9\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"packers\",\"id\":\"0523\",\"team\":\"GBP\",\"cbs_id\":\"430\",\"fleaflicker_id\":\"2339\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"stats_id\":\"16\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"twitter_username\":\"Vikings\",\"id\":\"0524\",\"team\":\"MIN\",\"cbs_id\":\"405\",\"fleaflicker_id\":\"2345\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"stats_id\":\"27\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"TBBuccaneers\",\"id\":\"0525\",\"team\":\"TBB\",\"cbs_id\":\"417\",\"fleaflicker_id\":\"2357\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"stats_id\":\"1\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"twitter_username\":\"AtlantaFalcons\",\"id\":\"0526\",\"team\":\"ATL\",\"cbs_id\":\"401\",\"fleaflicker_id\":\"2329\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"stats_id\":\"29\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"twitter_username\":\"Panthers\",\"id\":\"0527\",\"team\":\"CAR\",\"cbs_id\":\"420\",\"fleaflicker_id\":\"2332\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"stats_id\":\"14\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"STLouisRams\",\"id\":\"0528\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"stats_id\":\"18\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"twitter_username\":\"saints\",\"id\":\"0529\",\"team\":\"NOS\",\"cbs_id\":\"407\",\"fleaflicker_id\":\"2347\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"stats_id\":\"25\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"twitter_username\":\"49ers\",\"id\":\"0530\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"stats_id\":\"33\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"twitter_username\":\"ravens\",\"id\":\"0531\",\"team\":\"BAL\",\"cbs_id\":\"425\",\"fleaflicker_id\":\"2330\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"stats_id\":\"34\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"twitter_username\":\"houstontexans\",\"id\":\"0532\",\"team\":\"HOU\",\"cbs_id\":\"432\",\"fleaflicker_id\":\"2340\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1994\",\"draft_team\":\"NYJ\",\"stats_id\":\"39685\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"twitter_username\":\"PeteCarroll\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"birthdate\":\"94366800\",\"draft_team\":\"FA\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"rotowire_id\":\"395\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"aVinatieri4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"team\":\"FA\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"IND\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"TBB\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"FA\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"FA\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"FA\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"LVR\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"FA\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"IND\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"FA\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"WAS\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"20\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"NYJ\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"2\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"FA\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"FA\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"FA\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"24\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"TEN\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"FA\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"FA\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"FA\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"FA\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"twitter_username\":\"CoachTomlin\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"26\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"WAS\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"FA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"CHI\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"SEA\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"FA\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"FA\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"fleaflicker_id\":\"4848\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"FA\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"2\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"FA\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"KCC\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"CB\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"FA\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"BAL\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"NYJ\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"FA\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"fleaflicker_id\":\"5372\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"FA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"FA\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"BUF\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"FA\",\"cbs_id\":\"519042\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"FA\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"NOS\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"FA\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"FA\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"FA\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"4\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"FA\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"9\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"CAR\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"DET\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"NEP\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"FA\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"CAR\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"DAL\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"FA\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"CIN\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"FA\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"BAL\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"FA\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"FA\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"NYG\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"TBB\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"98\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"LAC\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"FA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"FA\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"10\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"NOS\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"8\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"CHI\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DE\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"72\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"JAC\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"FA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"FA*\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"fleaflicker_id\":\"6799\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"FA\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"FA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"FA\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"FA\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"FA\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"NYJ\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"FA\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"42\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"CLE\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"FA\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"twitter_username\":\"RiverboatRonHC\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"99\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"CLE\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"LVR\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"FA\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"LB\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"58\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"CHI\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"NEP\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"aldonsmith/2495487\",\"rotoworld_id\":\"6477\",\"stats_id\":\"24794\",\"position\":\"DE\",\"stats_global_id\":\"463434\",\"espn_id\":\"13988\",\"weight\":\"265\",\"id\":\"10274\",\"birthdate\":\"628405200\",\"draft_team\":\"SFO\",\"name\":\"Smith, Aldon\",\"draft_pick\":\"7\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7446\",\"jersey\":\"99\",\"twitter_username\":\"AldonSmith\",\"sportsdata_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"team\":\"DAL\",\"cbs_id\":\"1630791\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"99\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"DE\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"FA\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"HOU\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"DAL\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"FA\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"FA\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"FA\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"FA\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"DEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"FA\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"80\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"FA\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"34\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"BUF\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"FA\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"NYG\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"FA\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"FA\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"FA\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"FA\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"51\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"FA\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"DAL\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"FA\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"BUF\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"LAC\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"CIN\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"7\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"CHI\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"FA\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"FA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"NEP\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"FA\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"12\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"SFO\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"fleaflicker_id\":\"8577\",\"birthdate\":\"609570000\",\"draft_team\":\"SDC\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"FA\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"DAL\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"55\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"SEA\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"FA\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"FA\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"27\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"FA\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"26\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"FA\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"fleaflicker_id\":\"8472\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"BAL\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"FA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"32\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"FA\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"FA\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"FA\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"LVR\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"FA\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"FA\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"96\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"FA\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"59\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"CAR\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"FA\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"24\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"BUF\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DE\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"95\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"TEN\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"4\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"DAL\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"FA\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"28\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NYG\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"NYG\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"LVR\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"8\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"CLE\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"FA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"10\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"FA\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"FA\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"FA\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"39\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"CHI\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"FA\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"twitter_username\":\"BruceArians\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"TEN\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"fleaflicker_id\":\"9009\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"FA\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"BUF\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"FA\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"NYJ\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"7\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"JAC\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"FA\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"25\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"JAC\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"FA\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"NYJ\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"FA\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"10\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"FA\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"10\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"ARI\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"FA\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"11\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"PHI\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"86\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"FA\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"85\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"JAC\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"83\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"NYG\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"97\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"FA\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"FA\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"NOS\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DE\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"LVR\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"FA\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"FA\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"77\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"CHI\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"FA\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"FA\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"51\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"CHI\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"47\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"NOS\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"21\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"DET\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"29\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"IND\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"26\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"FA\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"8\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"SFO\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"FA\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"FA\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"FA\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"23\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"PHI\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"8\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"DET\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"FA\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"21\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"DET\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"FA\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"53\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"BUF\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"SEA\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"SEA\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DEN\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"85\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DT\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"FA\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"DET\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"S\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"FA\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"88\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CHI\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"FA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"FA\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"ATL\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"FA\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"SEA\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"FA\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"ATL\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"23\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"PHI\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"FA\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"DEN\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"FA\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"FA\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"NYJ\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"0\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"JAC\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"LVR\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"NEP\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"FA\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"HOU\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"FA\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"HOU\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"CAR\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"FA\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"LVR\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"WAS\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"34\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"SEA\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"5\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"FA*\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"FA\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"11\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"NEP\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"12\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"HOU\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"FA\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"FA\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"FA\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"PIT\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"IND\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"IND\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"FA*\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"JAC\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"93\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"HOU\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"PIT\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"PIT\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"MIA\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"51\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"21\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"FA\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"WAS\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"DAL\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"CB\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"LVR\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"WAS\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"2\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"ATL\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"S\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"GBP\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"FA\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"FA\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"28\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"82\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"WAS\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"HOU\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"78\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"LB\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"91\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"JAC\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"FA\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"FA\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DT\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"FA\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"NYJ\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"CB\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"57\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"WAS\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"LVR\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"96\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"FA\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"NYJ\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"CAR\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"ARI\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"NYJ\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"NYJ\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"CLE\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, T.J.\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"IND\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"91\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"NEP\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DE\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"FA\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"FA\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"FA\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"5\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"FA\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"16\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"FA\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chandlercatanzaro/2550325\",\"rotoworld_id\":\"10045\",\"stats_id\":\"28103\",\"position\":\"PK\",\"stats_global_id\":\"522233\",\"espn_id\":\"16976\",\"weight\":\"200\",\"id\":\"11960\",\"draft_team\":\"FA\",\"birthdate\":\"667544400\",\"name\":\"Catanzaro, Chandler\",\"college\":\"Clemson\",\"rotowire_id\":\"9845\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"team\":\"NYG\",\"cbs_id\":\"2130276\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"TEN\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"FA\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"FA\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DT\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"CAR\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"FA\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"FA\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"0\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"DEN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"NEP\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"FA\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"FA\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"FA\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"3\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"NOS\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"LVR\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"ATL\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"DEN\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"29\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"27\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"FA\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"HOU\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"FA\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"13\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"LVR\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"DAL\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"FA\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"BUF\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"13\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"SEA\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"NYJ\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"17\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"GBP\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"83\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"FA\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"DEN\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"FA\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"FA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"DAL\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"DE\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"ATL\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"NOS\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"DE\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"WAS\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"92\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"DET\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"FA\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DE\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"ARI\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"LB\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"TEN\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"FA\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"SFO\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, A.J.\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"FA\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"FA\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"22\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"CIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"CLE\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"ATL\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NOS\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"LVR\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"31\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"MIA\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"LVR\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"S\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"21\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"WAS\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"NYG\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"97\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"HOU\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"FA\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"TEN\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DT\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"JAC\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"NOS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"FA\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"DET\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"28\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"NOS\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DE\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"95\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"DEN\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"FA\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10605\",\"stats_id\":\"28620\",\"position\":\"LB\",\"stats_global_id\":\"845648\",\"espn_id\":\"3137087\",\"weight\":\"245\",\"id\":\"12369\",\"birthdate\":\"698821200\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Edmond\",\"draft_pick\":\"15\",\"college\":\"Newberry\",\"rotowire_id\":\"10497\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"AAP_30\",\"sportsdata_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"team\":\"ATL\",\"cbs_id\":\"2174218\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"FA\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"27\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"DET\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"FA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"FA\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"LVR\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"HOU\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"FA\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"CAR\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"GBP\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"LVR\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"SEA\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"NEP\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"CAR\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"ATL\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"51\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NEP\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"TEN\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"LAC\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"0\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"PIT\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"FA\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"FA\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"6\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DEN\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"FA\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"FA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"LVR\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"NYJ\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"MIA\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"FA\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"FA\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"WAS\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"WAS\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"ATL\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"NYG\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"NYJ\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"81\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"MIN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"12\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"CAR\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"DET\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"FA\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"CIN\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"CLE\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"DEN\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"MIA\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"IND\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"DE\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"MIA\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"MIN\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"LAR\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CLE\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"NYG\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"DET\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"FA\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"FA\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"CIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"WAS\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"CAR\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"S\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"CLE\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"CIN\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"27\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"DET\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"LAR\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"CHI\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"BUF\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"TEN\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DE\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"51\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"WAS\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"FA\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"NYG\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"FA\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"LVR\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"LVR\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"S\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"JAC\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"NYJ\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"ARI\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"DAL\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"LAC\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"NYG\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"79\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PHI\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"53\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"JAC\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"96\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"IND\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"HOU\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"CLE\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"LVR\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ARI\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"64\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"S\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CAR\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"CB\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"TBB\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"SFO\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"NYG\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"FA\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"99\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"BUF\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DT\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"36\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"CIN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"CHI\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"CIN\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"FA\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"SDC\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"PHI\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"CLE\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"CHI\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"FA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"FA\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"draft_team\":\"TBB\",\"birthdate\":\"751611600\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"NEP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"34\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"PIT\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"16\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"CHI\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"MIA\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"DAL\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"MIA\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"52\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"MIA\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"IND\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"34\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"PHI\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"BUF\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"CAR\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"MIA\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"BUF\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"SFO\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"KCC\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"FA\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"FA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"DAL\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"LVR\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"LVR\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"FA\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"NOS\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"FA\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"CAR\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"FA\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"CHI\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"93\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"DEN\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"MIN\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"LVR\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"FA\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"FA\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"KCC\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LVR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"SFO\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"FA\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"FA\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"NYJ\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"IND\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"FA\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"NYG\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"FA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"FA\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"WAS\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"FA\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"JAC\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"BUF\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"IND\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"NYG\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"LVR\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"JAC\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"CIN\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"FA\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"FA\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"FA\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"KCC\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"TBB\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"IND\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"MIA\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"PIT\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"PIT\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"NYJ\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"FA\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"LVR\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"KCC\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"HOU\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"TBB\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"MIA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"KCC\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"90\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"ATL\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"ATL\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"FA\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"75\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"NYJ\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DT\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DT\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"93\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"PIT\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"GBP\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"TBB\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"MIA\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"PHI\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"SEA\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"LAC\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"NYJ\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"PHI\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"FA\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"FA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"87\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"MIA\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"NYJ\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"FA\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"JAC\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"NEP\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"MIA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"IND\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"PHI\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"FA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"FA\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"MIN\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"FA\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"CIN\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"CB\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"S\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"NYJ\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"WR\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"FA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"LVR\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"48\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"CHI\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DE\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"FA\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"BUF\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DE\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"HOU\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"MIA\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"DET\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DE\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"GBP\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"NOS\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"DET\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"MIA\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"KCC\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"RB\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"NOS\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"FA\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"FA\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"CLE\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"PIT\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"MIN\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"FA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, P.J.\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"CAR\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"LVR\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DE\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"ARI\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"FA\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"FA\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"ATL\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"FA\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"CLE\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"FA\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"FA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"NYJ\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"NYJ\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"S\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"45\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"GBP\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"FA\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"DET\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"14\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"BUF\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"CLE\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"CHI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"LB\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"TEN\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"MIA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"PIT\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"NYJ\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"PHI\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"WAS\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"DET\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"LAR\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"MIA\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"SFO\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"FA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"BUF\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"LVR\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"BUF\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"WAS\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"CLE\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"BAL\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"WAS\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"FA\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"757573200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"ATL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"LVR\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"LVR\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"36\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"JAC\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"LVR\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"97\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"KCC\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"TBB\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"LVR\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"CLE\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"47\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"CB\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"NYG\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"DEN\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"LVR\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"CB\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SFO\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"37\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"DEN\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"CIN\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"CLE\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"DET\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"JAC\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"LB\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"CB\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"34\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"WAS\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"TE\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"ARI\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"FA\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DT\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"FA\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"49\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"NYJ\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"HOU\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"FA\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"ATL\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"HOU\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"SFO\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"CAR\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"birthdate\":\"698907600\",\"draft_team\":\"FA\",\"stats_id\":\"30711\",\"position\":\"PN\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"11829\",\"weight\":\"194\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"id\":\"13848\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"FA\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"6\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"ATL\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"FA\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"BUF\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"JAC\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"WAS\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"CAR\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"BUF\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"TEN\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"FA\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"NYJ\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"CIN\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"PHI\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13507\",\"stats_id\":\"31314\",\"position\":\"CB\",\"stats_global_id\":\"822378\",\"weight\":\"189\",\"id\":\"13928\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Nichols, Deatrick\",\"college\":\"South Florida\",\"rotowire_id\":\"12758\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"team\":\"NOS\",\"cbs_id\":\"2926507\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"KCC\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"MIA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"NOS\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"CHI\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"NYG\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"FA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"TEN\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"MIA\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DE\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"CLE\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"NYG\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"BUF\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"DET\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"DAL\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"LVR\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"GBP\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"FA\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"HOU\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"40\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"23\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"CIN\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"NYJ\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"CAR\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"38\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"DET\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"GBP\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"FA\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"ARI\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"FA\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"CIN\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"FA\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"NOS\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"PIT\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"MIA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"89\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"LVR\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"MIN\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"birthdate\":\"873608400\",\"draft_team\":\"FA\",\"stats_id\":\"32469\",\"position\":\"WR\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"stats_global_id\":\"866112\",\"height\":\"72\",\"rotowire_id\":\"13877\",\"jersey\":\"8\",\"weight\":\"205\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"id\":\"14131\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"FA\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"ARI\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"FA\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"WAS\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"stats_id\":\"31858\",\"position\":\"DE\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"LVR\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"DAL\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"97\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"PHI\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"stats_id\":\"31835\",\"position\":\"DE\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"stats_id\":\"31903\",\"position\":\"DE\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"GBP\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"BAL\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"FA\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"TEN\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"NYG\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"stats_id\":\"31940\",\"position\":\"S\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"LVR\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"LVR\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"draft_team\":\"FA\",\"stats_id\":\"32368\",\"position\":\"RB\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"stats_global_id\":\"868331\",\"height\":\"72\",\"rotowire_id\":\"13549\",\"jersey\":\"30\",\"weight\":\"205\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"id\":\"14192\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"birthdate\":\"674283600\",\"draft_team\":\"FA\",\"stats_id\":\"31822\",\"position\":\"RB\",\"name\":\"Wade, Christian\",\"stats_global_id\":\"1164428\",\"height\":\"67\",\"rotowire_id\":\"13930\",\"jersey\":\"45\",\"weight\":\"185\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"id\":\"14194\",\"team\":\"BUF\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"draft_team\":\"GBP\",\"draft_pick\":\"21\",\"position\":\"S\",\"name\":\"Savage, Darnell\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13810\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"id\":\"14197\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"13514\",\"height\":\"75\",\"jersey\":\"79\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"LVR\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"LVR\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"LVR\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"NYG\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"TBB\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"BUF\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"DEN\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"DET\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"stats_id\":\"31991\",\"position\":\"DT\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"2\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CLE\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"FA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"NOS\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYG\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"DET\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"DEN\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"CHI\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"IND\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"FA\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"PIT\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"SEA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"JAC\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"stats_id\":\"32074\",\"position\":\"DT\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"MIA\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"TBB\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"NOS\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"IND\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"1\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"LVR\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"SEA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"PIT\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"FA\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"FA\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"DET\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"birthdate\":\"787208400\",\"draft_team\":\"FA\",\"stats_id\":\"31831\",\"position\":\"PK\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"stats_global_id\":\"744596\",\"height\":\"72\",\"rotowire_id\":\"13943\",\"weight\":\"189\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"id\":\"14335\",\"team\":\"TBB\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"DAL\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"birthdate\":\"816325200\",\"draft_team\":\"FA\",\"stats_id\":\"32238\",\"position\":\"RB\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"stats_global_id\":\"836057\",\"height\":\"72\",\"rotowire_id\":\"14082\",\"jersey\":\"23\",\"weight\":\"226\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"id\":\"14338\",\"team\":\"NYG\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"birthdate\":\"755067600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"12121\",\"jersey\":\"13\",\"weight\":\"178\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"id\":\"14339\",\"team\":\"TBB\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"draft_team\":\"FA\",\"stats_id\":\"32456\",\"position\":\"TE\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"stats_global_id\":\"875649\",\"height\":\"80\",\"rotowire_id\":\"13602\",\"jersey\":\"46\",\"weight\":\"240\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"id\":\"14341\",\"team\":\"LAC\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"draft_team\":\"FA\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"CIN\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"CAR\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"birthdate\":\"789022800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"stats_global_id\":\"744162\",\"height\":\"72\",\"rotowire_id\":\"12734\",\"jersey\":\"46\",\"weight\":\"230\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"id\":\"14350\",\"team\":\"DAL\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"MIN\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"birthdate\":\"770101200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"stats_global_id\":\"746191\",\"height\":\"74\",\"rotowire_id\":\"12539\",\"jersey\":\"15\",\"weight\":\"200\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"id\":\"14365\",\"team\":\"LAC\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"82\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"CIN\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"birthdate\":\"822459600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"stats_global_id\":\"832993\",\"height\":\"76\",\"rotowire_id\":\"13237\",\"jersey\":\"76\",\"weight\":\"295\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"id\":\"14377\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32220\",\"position\":\"LB\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"stats_global_id\":\"821593\",\"height\":\"74\",\"rotowire_id\":\"13907\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"id\":\"14384\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"stats_global_id\":\"699216\",\"height\":\"70\",\"rotowire_id\":\"11374\",\"jersey\":\"42\",\"weight\":\"200\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"id\":\"14394\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"birthdate\":\"818917200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820730\",\"height\":\"73\",\"rotowire_id\":\"13342\",\"jersey\":\"38\",\"weight\":\"210\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"id\":\"14398\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"FA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"LVR\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"stats_id\":\"31648\",\"position\":\"DE\",\"stats_global_id\":\"820764\",\"weight\":\"255\",\"id\":\"14421\",\"draft_team\":\"FA\",\"birthdate\":\"811314000\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"rotowire_id\":\"13187\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"birthdate\":\"841294800\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"stats_global_id\":\"837722\",\"height\":\"71\",\"rotowire_id\":\"12827\",\"jersey\":\"39\",\"weight\":\"200\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"id\":\"14434\",\"team\":\"WAS\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"college\":\"Louisville\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"JAC\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"FA\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"786690000\",\"draft_team\":\"FA\",\"stats_id\":\"32559\",\"position\":\"RB\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"stats_global_id\":\"835777\",\"height\":\"69\",\"rotowire_id\":\"14237\",\"jersey\":\"46\",\"weight\":\"179\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"id\":\"14465\",\"team\":\"MIN\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"birthdate\":\"840862800\",\"draft_team\":\"FA\",\"stats_id\":\"32556\",\"position\":\"WR\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"stats_global_id\":\"838301\",\"height\":\"75\",\"rotowire_id\":\"14236\",\"jersey\":\"81\",\"weight\":\"205\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"id\":\"14481\",\"team\":\"DAL\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"birthdate\":\"848206800\",\"draft_team\":\"FA\",\"stats_id\":\"32283\",\"position\":\"WR\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"stats_global_id\":\"1063397\",\"height\":\"73\",\"rotowire_id\":\"14129\",\"jersey\":\"83\",\"weight\":\"201\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"id\":\"14486\",\"team\":\"CLE\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"birthdate\":\"850366800\",\"draft_team\":\"FA\",\"stats_id\":\"32273\",\"position\":\"TE\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"stats_global_id\":\"881697\",\"height\":\"76\",\"rotowire_id\":\"14131\",\"jersey\":\"89\",\"weight\":\"240\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"id\":\"14488\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"birthdate\":\"867992400\",\"draft_team\":\"FA\",\"stats_id\":\"32277\",\"position\":\"PN\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"stats_global_id\":\"891880\",\"height\":\"73\",\"rotowire_id\":\"14147\",\"jersey\":\"7\",\"weight\":\"207\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"id\":\"14489\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"809586000\",\"draft_team\":\"FA\",\"stats_id\":\"32205\",\"position\":\"LB\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"stats_global_id\":\"821248\",\"height\":\"75\",\"rotowire_id\":\"14068\",\"jersey\":\"57\",\"weight\":\"245\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"id\":\"14495\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"birthdate\":\"853390800\",\"draft_team\":\"FA\",\"stats_id\":\"32189\",\"position\":\"WR\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"stats_global_id\":\"1165782\",\"height\":\"72\",\"rotowire_id\":\"13919\",\"jersey\":\"2\",\"weight\":\"180\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"id\":\"14499\",\"team\":\"DEN\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"819262800\",\"draft_team\":\"FA\",\"stats_id\":\"32266\",\"position\":\"LB\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820700\",\"height\":\"72\",\"rotowire_id\":\"14103\",\"jersey\":\"40\",\"weight\":\"228\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"id\":\"14509\",\"team\":\"GBP\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"birthdate\":\"813992400\",\"draft_team\":\"FA\",\"stats_id\":\"32152\",\"position\":\"QB\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"stats_global_id\":\"945086\",\"height\":\"76\",\"rotowire_id\":\"14040\",\"jersey\":\"3\",\"weight\":\"221\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"id\":\"14510\",\"team\":\"FA\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2019\",\"birthdate\":\"900738000\",\"draft_team\":\"FA\",\"stats_id\":\"32623\",\"position\":\"S\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"stats_global_id\":\"910649\",\"height\":\"72\",\"rotowire_id\":\"14330\",\"jersey\":\"38\",\"weight\":\"195\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"id\":\"14518\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"birthdate\":\"845355600\",\"draft_team\":\"FA\",\"stats_id\":\"32151\",\"position\":\"LB\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"stats_global_id\":\"923359\",\"height\":\"75\",\"rotowire_id\":\"14257\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"id\":\"14519\",\"team\":\"CAR\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"birthdate\":\"867387600\",\"draft_team\":\"FA\",\"stats_id\":\"32509\",\"position\":\"DT\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"stats_global_id\":\"867748\",\"height\":\"75\",\"rotowire_id\":\"13864\",\"jersey\":\"67\",\"weight\":\"305\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"id\":\"14531\",\"team\":\"FA\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"birthdate\":\"803883600\",\"draft_team\":\"FA\",\"stats_id\":\"32547\",\"position\":\"WR\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"stats_global_id\":\"1166990\",\"height\":\"74\",\"rotowire_id\":\"13999\",\"jersey\":\"89\",\"weight\":\"213\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"id\":\"14545\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"birthdate\":\"822718800\",\"draft_team\":\"FA\",\"stats_id\":\"32137\",\"position\":\"WR\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"stats_global_id\":\"828656\",\"height\":\"70\",\"rotowire_id\":\"14012\",\"jersey\":\"14\",\"weight\":\"180\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"id\":\"14549\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"birthdate\":\"836197200\",\"draft_team\":\"FA\",\"stats_id\":\"32140\",\"position\":\"RB\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"835845\",\"height\":\"72\",\"rotowire_id\":\"13998\",\"jersey\":\"48\",\"weight\":\"233\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"id\":\"14552\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"birthdate\":\"848811600\",\"draft_team\":\"FA\",\"stats_id\":\"32143\",\"position\":\"WR\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"stats_global_id\":\"1050926\",\"height\":\"73\",\"rotowire_id\":\"14049\",\"jersey\":\"85\",\"weight\":\"166\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"id\":\"14554\",\"team\":\"MIN\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"birthdate\":\"848984400\",\"draft_team\":\"FA\",\"stats_id\":\"32612\",\"position\":\"WR\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"stats_global_id\":\"1168410\",\"height\":\"72\",\"rotowire_id\":\"14318\",\"jersey\":\"9\",\"weight\":\"190\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"id\":\"14555\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"birthdate\":\"881211600\",\"draft_team\":\"FA\",\"stats_id\":\"32398\",\"position\":\"WR\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"stats_global_id\":\"1166545\",\"height\":\"66\",\"rotowire_id\":\"14191\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"id\":\"14558\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"birthdate\":\"855378000\",\"draft_team\":\"FA\",\"stats_id\":\"32492\",\"position\":\"LB\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"stats_global_id\":\"880029\",\"height\":\"77\",\"rotowire_id\":\"13859\",\"jersey\":\"58\",\"weight\":\"260\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"id\":\"14559\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"stats_id\":\"32243\",\"position\":\"WR\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"stats_global_id\":\"838670\",\"height\":\"72\",\"rotowire_id\":\"13815\",\"jersey\":\"80\",\"weight\":\"191\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"id\":\"14560\",\"team\":\"CHI\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"82\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"805698000\",\"draft_team\":\"FA\",\"stats_id\":\"32548\",\"position\":\"PN\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"stats_global_id\":\"839067\",\"height\":\"75\",\"rotowire_id\":\"14265\",\"jersey\":\"6\",\"weight\":\"219\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"id\":\"14568\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"852181200\",\"draft_team\":\"FA\",\"stats_id\":\"32589\",\"position\":\"S\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"stats_global_id\":\"865648\",\"height\":\"71\",\"rotowire_id\":\"14297\",\"jersey\":\"32\",\"weight\":\"195\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"id\":\"14579\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"birthdate\":\"832568400\",\"draft_team\":\"FA\",\"stats_id\":\"32222\",\"position\":\"LB\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"stats_global_id\":\"828111\",\"height\":\"74\",\"rotowire_id\":\"14081\",\"jersey\":\"54\",\"weight\":\"240\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"id\":\"14584\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"birthdate\":\"870670800\",\"draft_team\":\"FA\",\"stats_id\":\"32318\",\"position\":\"LB\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"866464\",\"height\":\"74\",\"rotowire_id\":\"13829\",\"jersey\":\"46\",\"weight\":\"228\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"id\":\"14590\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"birthdate\":\"830408400\",\"draft_team\":\"FA\",\"stats_id\":\"32364\",\"position\":\"TE\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"stats_global_id\":\"832213\",\"height\":\"75\",\"rotowire_id\":\"14184\",\"jersey\":\"40\",\"weight\":\"225\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"id\":\"14591\",\"team\":\"KCC\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"birthdate\":\"869634000\",\"draft_team\":\"FA\",\"stats_id\":\"32123\",\"position\":\"WR\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"stats_global_id\":\"883976\",\"height\":\"68\",\"rotowire_id\":\"13833\",\"jersey\":\"17\",\"weight\":\"190\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"id\":\"14592\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32461\",\"position\":\"DT\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"835485\",\"height\":\"76\",\"rotowire_id\":\"14213\",\"jersey\":\"62\",\"weight\":\"285\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"id\":\"14595\",\"team\":\"DET\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"birthdate\":\"829112400\",\"draft_team\":\"FA\",\"stats_id\":\"32384\",\"position\":\"PK\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"stats_global_id\":\"836963\",\"height\":\"71\",\"rotowire_id\":\"14172\",\"jersey\":\"4\",\"weight\":\"213\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"id\":\"14600\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"birthdate\":\"808635600\",\"draft_team\":\"FA\",\"stats_id\":\"32439\",\"position\":\"RB\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"stats_global_id\":\"835694\",\"height\":\"72\",\"rotowire_id\":\"13913\",\"jersey\":\"42\",\"weight\":\"205\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"id\":\"14612\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"birthdate\":\"859784400\",\"draft_team\":\"FA\",\"stats_id\":\"32187\",\"position\":\"WR\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"stats_global_id\":\"877596\",\"height\":\"70\",\"rotowire_id\":\"14055\",\"jersey\":\"15\",\"weight\":\"190\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"id\":\"14613\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"birthdate\":\"829285200\",\"draft_team\":\"FA\",\"stats_id\":\"32581\",\"position\":\"QB\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"stats_global_id\":\"837040\",\"height\":\"73\",\"rotowire_id\":\"13566\",\"jersey\":\"6\",\"weight\":\"210\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"id\":\"14618\",\"team\":\"PIT\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"881730000\",\"draft_team\":\"FA\",\"stats_id\":\"32642\",\"position\":\"QB\",\"name\":\"Ta'amu, Jordan\",\"college\":\"Mississippi\",\"stats_global_id\":\"974470\",\"height\":\"75\",\"rotowire_id\":\"13629\",\"jersey\":\"6\",\"weight\":\"221\",\"sportsdata_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"id\":\"14622\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"817448400\",\"draft_team\":\"FA\",\"stats_id\":\"32386\",\"position\":\"PN\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"stats_global_id\":\"866061\",\"height\":\"76\",\"rotowire_id\":\"14171\",\"jersey\":\"6\",\"weight\":\"220\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"id\":\"14630\",\"team\":\"LVR\"},{\"draft_year\":\"2019\",\"birthdate\":\"857192400\",\"draft_team\":\"FA\",\"stats_id\":\"32321\",\"position\":\"DT\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"stats_global_id\":\"883319\",\"height\":\"73\",\"rotowire_id\":\"13519\",\"jersey\":\"60\",\"weight\":\"285\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"id\":\"14652\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"birthdate\":\"827211600\",\"draft_team\":\"FA\",\"stats_id\":\"32425\",\"position\":\"DT\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"stats_global_id\":\"834396\",\"height\":\"73\",\"rotowire_id\":\"14204\",\"jersey\":\"79\",\"weight\":\"299\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"id\":\"14653\",\"team\":\"TEN\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"stats_id\":\"32295\",\"position\":\"TE\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"stats_global_id\":\"884045\",\"height\":\"76\",\"rotowire_id\":\"14094\",\"jersey\":\"86\",\"weight\":\"245\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"id\":\"14654\",\"team\":\"WAS\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32241\",\"position\":\"LB\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"881829\",\"height\":\"73\",\"rotowire_id\":\"13487\",\"jersey\":\"48\",\"weight\":\"235\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"id\":\"14660\",\"team\":\"NYG\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"38\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"LVR\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"27\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"95\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"LAR\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Wiltz, Jomal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"74\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"birthdate\":\"873349200\",\"draft_team\":\"FA\",\"stats_id\":\"32155\",\"position\":\"DT\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14044\",\"jersey\":\"72\",\"weight\":\"320\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"id\":\"14677\",\"team\":\"ARI\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"79\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"832395600\",\"draft_team\":\"FA\",\"stats_id\":\"32304\",\"position\":\"LB\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13539\",\"jersey\":\"50\",\"weight\":\"240\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"id\":\"14682\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"ARI\"},{\"draft_year\":\"2019\",\"birthdate\":\"863413200\",\"draft_team\":\"FA\",\"stats_id\":\"32552\",\"position\":\"S\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14267\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"id\":\"14702\",\"team\":\"LAC\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"71\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"birthdate\":\"829026000\",\"draft_team\":\"FA\",\"stats_id\":\"32417\",\"position\":\"PK\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14254\",\"jersey\":\"7\",\"weight\":\"190\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"id\":\"14717\",\"team\":\"IND\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"47\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"DEN\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"PHI\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32671\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14777\",\"draft_team\":\"CIN\",\"birthdate\":\"850194000\",\"name\":\"Burrow, Joe\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"14442\",\"height\":\"76\",\"twitter_username\":\"Joe_Burrow10\",\"sportsdata_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"team\":\"CIN\",\"cbs_id\":\"2179798\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32675\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14778\",\"draft_team\":\"MIA\",\"birthdate\":\"888814800\",\"name\":\"Tagovailoa, Tua\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"14465\",\"height\":\"73\",\"twitter_username\":\"Tuaamann\",\"sportsdata_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"team\":\"MIA\",\"cbs_id\":\"2741209\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32676\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"237\",\"id\":\"14779\",\"draft_team\":\"LAC\",\"birthdate\":\"889506000\",\"name\":\"Herbert, Justin\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"rotowire_id\":\"14446\",\"height\":\"78\",\"twitter_username\":\"Justin10Herbert\",\"sportsdata_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"team\":\"LAC\",\"cbs_id\":\"2221960\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32792\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14780\",\"draft_team\":\"IND\",\"birthdate\":\"879742800\",\"name\":\"Eason, Jacob\",\"draft_pick\":\"16\",\"college\":\"Washington\",\"rotowire_id\":\"14401\",\"height\":\"78\",\"twitter_username\":\"skinnyqb10\",\"sportsdata_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"team\":\"IND\",\"cbs_id\":\"2240210\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32837\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"222\",\"id\":\"14781\",\"draft_team\":\"BUF\",\"birthdate\":\"901774800\",\"name\":\"Fromm, Jake\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"rotowire_id\":\"14486\",\"height\":\"74\",\"twitter_username\":\"FrommJake\",\"sportsdata_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"team\":\"BUF\",\"cbs_id\":\"2803326\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32696\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14782\",\"draft_team\":\"GBP\",\"birthdate\":\"909982800\",\"name\":\"Love, Jordan\",\"draft_pick\":\"26\",\"college\":\"Utah State\",\"rotowire_id\":\"14371\",\"height\":\"76\",\"twitter_username\":\"jordan3love\",\"sportsdata_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"team\":\"GBP\",\"cbs_id\":\"2239997\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32723\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14783\",\"draft_team\":\"PHI\",\"birthdate\":\"902466000\",\"name\":\"Hurts, Jalen\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14416\",\"height\":\"74\",\"twitter_username\":\"JalenHurts\",\"sportsdata_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"team\":\"PHI\",\"cbs_id\":\"2240246\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33207\",\"position\":\"QB\",\"name\":\"Montez, Steven\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14393\",\"id\":\"14784\",\"team\":\"WAS\",\"cbs_id\":\"2185536\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32914\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"14785\",\"draft_team\":\"MIN\",\"birthdate\":\"872571600\",\"name\":\"Stanley, Nate\",\"draft_pick\":\"30\",\"college\":\"Iowa\",\"rotowire_id\":\"14566\",\"height\":\"76\",\"twitter_username\":\"Njstan4\",\"sportsdata_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"team\":\"MIN\",\"cbs_id\":\"2251110\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33246\",\"position\":\"QB\",\"name\":\"Patterson, Shea\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14469\",\"id\":\"14786\",\"team\":\"FA\",\"cbs_id\":\"2221866\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Gordon, Anthony\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14431\",\"id\":\"14787\",\"team\":\"SEA\",\"cbs_id\":\"2251387\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33015\",\"position\":\"QB\",\"name\":\"Lewerke, Brian\",\"college\":\"Michigan State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14530\",\"id\":\"14788\",\"team\":\"FA\",\"cbs_id\":\"2186429\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32993\",\"position\":\"QB\",\"name\":\"Huntley, Tyler\",\"college\":\"Utah\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14563\",\"sportsdata_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"id\":\"14789\",\"team\":\"BAL\",\"cbs_id\":\"3159137\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32795\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14790\",\"draft_team\":\"NYJ\",\"birthdate\":\"857106000\",\"name\":\"Morgan, James\",\"draft_pick\":\"19\",\"college\":\"Florida International\",\"rotowire_id\":\"14531\",\"height\":\"76\",\"twitter_username\":\"jmoneyyy12\",\"sportsdata_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"team\":\"NYJ\",\"cbs_id\":\"2180077\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Fine, Mason\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14786\",\"id\":\"14791\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Perkins, Bryce\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14429\",\"id\":\"14792\",\"team\":\"LAR\",\"cbs_id\":\"3159114\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32859\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"14793\",\"draft_team\":\"JAC\",\"birthdate\":\"829198800\",\"name\":\"Luton, Jake\",\"draft_pick\":\"10\",\"college\":\"Oregon State\",\"rotowire_id\":\"14562\",\"height\":\"78\",\"twitter_username\":\"jakeluton6\",\"sportsdata_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"team\":\"JAC\",\"cbs_id\":\"2132133\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32894\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14794\",\"draft_team\":\"TEN\",\"birthdate\":\"895640400\",\"name\":\"McDonald, Cole\",\"draft_pick\":\"10\",\"college\":\"Hawaii\",\"rotowire_id\":\"14493\",\"height\":\"76\",\"twitter_username\":\"ColeHunter520\",\"sportsdata_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"team\":\"TEN\",\"cbs_id\":\"2257005\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Bryant, Kelly\",\"college\":\"Missouri\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14528\",\"id\":\"14795\",\"team\":\"FA\",\"cbs_id\":\"2179210\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32928\",\"position\":\"QB\",\"name\":\"Neal, Riley\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14859\",\"id\":\"14796\",\"team\":\"DEN\",\"cbs_id\":\"3159056\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32705\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14797\",\"draft_team\":\"DET\",\"birthdate\":\"916290000\",\"name\":\"Swift, D'Andre\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"14394\",\"height\":\"70\",\"twitter_username\":\"DAndreSwift\",\"sportsdata_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"team\":\"DET\",\"cbs_id\":\"2871710\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32756\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14798\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Moss, Zack\",\"draft_pick\":\"22\",\"college\":\"Utah\",\"rotowire_id\":\"14564\",\"height\":\"70\",\"twitter_username\":\"PresMoss2\",\"sportsdata_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"team\":\"BUF\",\"cbs_id\":\"2240516\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32722\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14799\",\"draft_team\":\"LAR\",\"birthdate\":\"930027600\",\"name\":\"Akers, Cam\",\"draft_pick\":\"20\",\"college\":\"Florida State\",\"rotowire_id\":\"14383\",\"height\":\"71\",\"twitter_username\":\"thereal_cam3\",\"sportsdata_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"team\":\"LAR\",\"cbs_id\":\"2804034\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32725\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14800\",\"draft_team\":\"BAL\",\"birthdate\":\"913870800\",\"name\":\"Dobbins, J.K.\",\"draft_pick\":\"23\",\"college\":\"Ohio State\",\"rotowire_id\":\"14418\",\"height\":\"70\",\"twitter_username\":\"jkdobbins22\",\"sportsdata_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"team\":\"BAL\",\"cbs_id\":\"2804420\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32892\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14801\",\"draft_team\":\"ARI\",\"birthdate\":\"945061200\",\"name\":\"Benjamin, Eno\",\"draft_pick\":\"8\",\"college\":\"Arizona State\",\"rotowire_id\":\"14372\",\"height\":\"70\",\"twitter_username\":\"eno_benjamin5\",\"sportsdata_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"team\":\"ARI\",\"cbs_id\":\"2760832\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32711\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14802\",\"draft_team\":\"IND\",\"birthdate\":\"916722000\",\"name\":\"Taylor, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14455\",\"height\":\"71\",\"twitter_username\":\"JayT23\",\"sportsdata_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"team\":\"IND\",\"cbs_id\":\"2866395\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32702\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14803\",\"draft_team\":\"KCC\",\"birthdate\":\"923806800\",\"name\":\"Edwards-Helaire, Clyde\",\"draft_pick\":\"32\",\"college\":\"LSU\",\"rotowire_id\":\"14514\",\"height\":\"68\",\"sportsdata_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"team\":\"KCC\",\"cbs_id\":\"2804554\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32794\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14804\",\"draft_team\":\"PIT\",\"name\":\"McFarland, Anthony\",\"draft_pick\":\"18\",\"college\":\"Maryland\",\"rotowire_id\":\"14357\",\"height\":\"69\",\"sportsdata_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"team\":\"PIT\",\"cbs_id\":\"2804293\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32732\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"espn_id\":\"4239934\",\"weight\":\"250\",\"id\":\"14805\",\"draft_team\":\"GBP\",\"birthdate\":\"894085200\",\"name\":\"Dillon, AJ\",\"draft_pick\":\"30\",\"college\":\"Boston College\",\"rotowire_id\":\"14370\",\"height\":\"73\",\"twitter_username\":\"ajdillon7\",\"sportsdata_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"team\":\"GBP\",\"cbs_id\":\"2867083\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32790\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14806\",\"draft_team\":\"NYJ\",\"birthdate\":\"886136400\",\"name\":\"Perine, Lamical\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"14427\",\"height\":\"71\",\"twitter_username\":\"lp_deucedeuce\",\"sportsdata_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"team\":\"NYJ\",\"cbs_id\":\"2248610\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32782\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14807\",\"draft_team\":\"LAC\",\"birthdate\":\"880002000\",\"name\":\"Kelley, Joshua\",\"draft_pick\":\"6\",\"college\":\"UCLA\",\"rotowire_id\":\"14494\",\"height\":\"71\",\"twitter_username\":\"SmoothplayJK\",\"sportsdata_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"team\":\"LAC\",\"cbs_id\":\"2183195\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32763\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14808\",\"draft_team\":\"TEN\",\"birthdate\":\"899960400\",\"name\":\"Evans, Darrynton\",\"draft_pick\":\"29\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14400\",\"height\":\"71\",\"twitter_username\":\"ItzLiveee\",\"sportsdata_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"team\":\"TEN\",\"cbs_id\":\"2240806\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33153\",\"position\":\"RB\",\"name\":\"Smith, Rodney\",\"college\":\"Minnesota\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14435\",\"id\":\"14809\",\"team\":\"CAR\",\"cbs_id\":\"2165586\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32746\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14810\",\"draft_team\":\"TBB\",\"birthdate\":\"862722000\",\"name\":\"Vaughn, Ke'Shawn\",\"draft_pick\":\"12\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"14557\",\"height\":\"70\",\"twitter_username\":\"SneakVaughn\",\"sportsdata_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"team\":\"TBB\",\"cbs_id\":\"2179704\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Ahmed, Salvon\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14453\",\"id\":\"14811\",\"team\":\"SFO\",\"cbs_id\":\"2815163\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33098\",\"position\":\"RB\",\"name\":\"Anderson, Darius\",\"college\":\"TCU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14565\",\"id\":\"14812\",\"team\":\"DAL\",\"cbs_id\":\"2240319\"},{\"draft_year\":\"2020\",\"birthdate\":\"902638800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33138\",\"position\":\"RB\",\"name\":\"Robinson, James\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14660\",\"weight\":\"220\",\"sportsdata_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"id\":\"14813\",\"team\":\"JAC\",\"cbs_id\":\"2257036\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33307\",\"position\":\"RB\",\"name\":\"Herrien, Brian\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14438\",\"id\":\"14814\",\"team\":\"CLE\",\"cbs_id\":\"2248619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32814\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14815\",\"draft_team\":\"SEA\",\"birthdate\":\"905922000\",\"name\":\"Dallas, DeeJay\",\"draft_pick\":\"38\",\"college\":\"Miami\",\"rotowire_id\":\"14410\",\"height\":\"70\",\"twitter_username\":\"DallasDeejay\",\"sportsdata_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"team\":\"SEA\",\"cbs_id\":\"2804094\"},{\"draft_year\":\"2020\",\"birthdate\":\"910846800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32972\",\"position\":\"RB\",\"name\":\"Warren, Michael\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14496\",\"weight\":\"224\",\"sportsdata_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"id\":\"14816\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Taylor, Patrick\",\"college\":\"Memphis\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14573\",\"id\":\"14817\",\"team\":\"GBP\",\"cbs_id\":\"2256736\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Jones, Xavier\",\"college\":\"SMU\",\"stats_global_id\":\"0\",\"id\":\"14818\",\"team\":\"LAR\",\"cbs_id\":\"3159182\"},{\"draft_year\":\"2020\",\"birthdate\":\"883544400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33126\",\"position\":\"RB\",\"name\":\"Feaster, Tavien\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14592\",\"weight\":\"215\",\"sportsdata_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"id\":\"14819\",\"team\":\"JAC\",\"cbs_id\":\"2239519\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33037\",\"position\":\"RB\",\"name\":\"Leake, Javon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14361\",\"id\":\"14820\",\"team\":\"NYG\",\"cbs_id\":\"2804292\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Hasty, JaMycal\",\"college\":\"Baylor\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14392\",\"id\":\"14821\",\"team\":\"SFO\",\"cbs_id\":\"2189504\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Corbin, Reggie\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14440\",\"id\":\"14822\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33100\",\"position\":\"RB\",\"name\":\"Dowdle, Rico\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14657\",\"id\":\"14823\",\"team\":\"DAL\",\"cbs_id\":\"2252798\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33161\",\"position\":\"RB\",\"name\":\"Phillips, Scottie\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14659\",\"id\":\"14824\",\"team\":\"HOU\",\"cbs_id\":\"2962972\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Conkrite, Jordan\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"id\":\"14825\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Pierce, Artavis\",\"college\":\"Oregon State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14881\",\"id\":\"14826\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33028\",\"position\":\"RB\",\"name\":\"Taylor, J.J.\",\"college\":\"Arizona\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14459\",\"id\":\"14827\",\"team\":\"NEP\",\"cbs_id\":\"2252786\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33114\",\"position\":\"RB\",\"name\":\"Jones, Tony\",\"college\":\"Notre Dame\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14423\",\"weight\":\"224\",\"sportsdata_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"id\":\"14828\",\"team\":\"NOS\",\"cbs_id\":\"2260681\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33309\",\"position\":\"RB\",\"name\":\"LeMay, Benny\",\"college\":\"Charlotte\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14532\",\"id\":\"14829\",\"team\":\"CLE\",\"cbs_id\":\"2258154\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32926\",\"position\":\"RB\",\"name\":\"Bellamy, LaVante\",\"college\":\"Western Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14656\",\"id\":\"14830\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32966\",\"position\":\"RB\",\"name\":\"Killins Jr., Adrian\",\"college\":\"Central Florida\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14396\",\"id\":\"14831\",\"team\":\"PHI\",\"cbs_id\":\"3159156\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32687\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"189\",\"id\":\"14832\",\"draft_team\":\"DAL\",\"birthdate\":\"923547600\",\"name\":\"Lamb, CeeDee\",\"draft_pick\":\"17\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14411\",\"height\":\"74\",\"twitter_username\":\"_CeeDeeThree\",\"sportsdata_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"team\":\"DAL\",\"cbs_id\":\"2865251\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32685\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14833\",\"draft_team\":\"DEN\",\"birthdate\":\"924930000\",\"name\":\"Jeudy, Jerry\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"14458\",\"height\":\"73\",\"twitter_username\":\"jerryjeudy\",\"sportsdata_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"team\":\"DEN\",\"cbs_id\":\"2741201\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32682\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14834\",\"draft_team\":\"LVR\",\"birthdate\":\"917154000\",\"name\":\"Ruggs, Henry\",\"draft_pick\":\"12\",\"college\":\"Alabama\",\"rotowire_id\":\"14473\",\"height\":\"72\",\"twitter_username\":\"__RUGGS\",\"sportsdata_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32703\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14835\",\"draft_team\":\"CIN\",\"birthdate\":\"917499600\",\"name\":\"Higgins, Tee\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"14506\",\"height\":\"76\",\"twitter_username\":\"teehiggins5\",\"sportsdata_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"team\":\"CIN\",\"cbs_id\":\"2809208\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32692\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14836\",\"draft_team\":\"MIN\",\"birthdate\":\"929509200\",\"name\":\"Jefferson, Justin\",\"draft_pick\":\"22\",\"college\":\"LSU\",\"rotowire_id\":\"14509\",\"height\":\"75\",\"twitter_username\":\"JJettas2\",\"sportsdata_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"team\":\"MIN\",\"cbs_id\":\"2871343\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32716\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"14837\",\"draft_team\":\"DEN\",\"birthdate\":\"931410000\",\"name\":\"Hamler, KJ\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14462\",\"height\":\"69\",\"twitter_username\":\"Kj_hamler\",\"sportsdata_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"team\":\"DEN\",\"cbs_id\":\"2804432\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32712\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14838\",\"draft_team\":\"JAC\",\"birthdate\":\"907563600\",\"name\":\"Shenault, Laviska\",\"draft_pick\":\"10\",\"college\":\"Colorado\",\"rotowire_id\":\"14358\",\"height\":\"74\",\"twitter_username\":\"Viska2live\",\"sportsdata_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32691\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14839\",\"draft_team\":\"PHI\",\"birthdate\":\"915166800\",\"name\":\"Reagor, Jalen\",\"draft_pick\":\"21\",\"college\":\"TCU\",\"rotowire_id\":\"14421\",\"height\":\"71\",\"twitter_username\":\"jalenreagor\",\"sportsdata_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"team\":\"PHI\",\"cbs_id\":\"2803733\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32695\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"14840\",\"draft_team\":\"SFO\",\"birthdate\":\"890110800\",\"name\":\"Aiyuk, Brandon\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"rotowire_id\":\"14386\",\"height\":\"73\",\"twitter_username\":\"THE2ERA\",\"sportsdata_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"team\":\"SFO\",\"cbs_id\":\"2967489\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32719\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14841\",\"draft_team\":\"PIT\",\"birthdate\":\"899787600\",\"name\":\"Claypool, Chase\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14433\",\"height\":\"76\",\"twitter_username\":\"ChaseClaypool\",\"sportsdata_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"team\":\"PIT\",\"cbs_id\":\"2260676\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32704\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14842\",\"draft_team\":\"IND\",\"birthdate\":\"876027600\",\"name\":\"Pittman, Michael\",\"draft_pick\":\"2\",\"college\":\"USC\",\"rotowire_id\":\"14378\",\"height\":\"76\",\"twitter_username\":\"MikePitt_Jr\",\"sportsdata_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"team\":\"IND\",\"cbs_id\":\"2240188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32750\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14843\",\"draft_team\":\"LVR\",\"birthdate\":\"876805200\",\"name\":\"Bowden, Lynn\",\"draft_pick\":\"16\",\"college\":\"Kentucky\",\"rotowire_id\":\"14460\",\"height\":\"72\",\"twitter_username\":\"LynnBowden_1\",\"sportsdata_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"team\":\"LVR\",\"cbs_id\":\"2875380\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32751\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14844\",\"draft_team\":\"LVR\",\"birthdate\":\"910933200\",\"name\":\"Edwards, Bryan\",\"draft_pick\":\"17\",\"college\":\"South Carolina\",\"rotowire_id\":\"14577\",\"height\":\"75\",\"twitter_username\":\"B__ED89\",\"sportsdata_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"team\":\"LVR\",\"cbs_id\":\"2221840\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32798\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14845\",\"draft_team\":\"BUF\",\"birthdate\":\"922942800\",\"name\":\"Davis, Gabriel\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"rotowire_id\":\"14359\",\"height\":\"75\",\"twitter_username\":\"DavisGB1\",\"sportsdata_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"team\":\"BUF\",\"cbs_id\":\"2804813\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32729\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14846\",\"draft_team\":\"NYJ\",\"birthdate\":\"876459600\",\"name\":\"Mims, Denzel\",\"draft_pick\":\"27\",\"college\":\"Baylor\",\"rotowire_id\":\"14539\",\"height\":\"75\",\"twitter_username\":\"Zel5Zelly\",\"sportsdata_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"team\":\"NYJ\",\"cbs_id\":\"2253076\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32762\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14847\",\"draft_team\":\"BAL\",\"birthdate\":\"874040400\",\"name\":\"Duvernay, Devin\",\"draft_pick\":\"28\",\"college\":\"Texas\",\"rotowire_id\":\"14636\",\"height\":\"71\",\"twitter_username\":\"Dev_Duv5\",\"sportsdata_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"team\":\"BAL\",\"cbs_id\":\"2246849\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32871\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14848\",\"draft_team\":\"BAL\",\"birthdate\":\"843282000\",\"name\":\"Proche, James\",\"draft_pick\":\"22\",\"college\":\"SMU\",\"rotowire_id\":\"14415\",\"height\":\"72\",\"twitter_username\":\"jamesproche3\",\"sportsdata_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"team\":\"BAL\",\"cbs_id\":\"2180769\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32877\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14849\",\"draft_team\":\"BUF\",\"birthdate\":\"908946000\",\"name\":\"Hodgins, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Oregon State\",\"rotowire_id\":\"14356\",\"height\":\"76\",\"twitter_username\":\"IsaiahHodgins\",\"sportsdata_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"team\":\"BUF\",\"cbs_id\":\"2783899\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32836\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14850\",\"draft_team\":\"DET\",\"birthdate\":\"891406800\",\"name\":\"Cephus, Quintez\",\"draft_pick\":\"20\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14466\",\"height\":\"73\",\"twitter_username\":\"QoDeep_87\",\"sportsdata_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"team\":\"DET\",\"cbs_id\":\"2251870\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32890\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14851\",\"draft_team\":\"LAC\",\"birthdate\":\"874299600\",\"name\":\"Hill, K.J.\",\"draft_pick\":\"6\",\"college\":\"Ohio State\",\"rotowire_id\":\"14414\",\"height\":\"72\",\"twitter_username\":\"kayjayhill\",\"sportsdata_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"team\":\"LAC\",\"cbs_id\":\"2179813\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32736\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14852\",\"draft_team\":\"WAS\",\"name\":\"Gibson, Antonio\",\"draft_pick\":\"2\",\"college\":\"Memphis\",\"rotowire_id\":\"14639\",\"height\":\"74\",\"twitter_username\":\"antoniogibson14\",\"sportsdata_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"team\":\"WAS\",\"cbs_id\":\"2960976\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32835\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14853\",\"draft_team\":\"JAC\",\"birthdate\":\"874990800\",\"name\":\"Johnson, Collin\",\"draft_pick\":\"19\",\"college\":\"Texas\",\"rotowire_id\":\"14545\",\"height\":\"78\",\"twitter_username\":\"Call_In_Johnson\",\"sportsdata_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"team\":\"JAC\",\"cbs_id\":\"2240315\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Victor, Binjimen\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14529\",\"id\":\"14854\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33039\",\"position\":\"WR\",\"name\":\"Mack, Austin\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14546\",\"weight\":\"215\",\"sportsdata_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"id\":\"14855\",\"team\":\"NYG\",\"cbs_id\":\"2239784\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33027\",\"position\":\"WR\",\"name\":\"Davis, Quartney\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14461\",\"id\":\"14856\",\"team\":\"MIN\",\"cbs_id\":\"2249179\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32857\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14857\",\"draft_team\":\"CLE\",\"birthdate\":\"919400400\",\"name\":\"Peoples-Jones, Donovan\",\"draft_pick\":\"8\",\"college\":\"Michigan\",\"rotowire_id\":\"14457\",\"height\":\"74\",\"twitter_username\":\"dpeoplesjones\",\"sportsdata_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"team\":\"CLE\",\"cbs_id\":\"2819119\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32727\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14858\",\"draft_team\":\"LAR\",\"birthdate\":\"838357200\",\"name\":\"Jefferson, Van\",\"draft_pick\":\"25\",\"college\":\"Florida\",\"rotowire_id\":\"14430\",\"height\":\"74\",\"sportsdata_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"team\":\"LAR\",\"cbs_id\":\"2186342\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Jackson, Trishton\",\"college\":\"Syracuse\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14402\",\"id\":\"14859\",\"team\":\"LAR\",\"cbs_id\":\"2253371\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32887\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14860\",\"draft_team\":\"SFO\",\"birthdate\":\"868510800\",\"name\":\"Jennings, Jauan\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"14376\",\"height\":\"75\",\"sportsdata_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"team\":\"SFO\",\"cbs_id\":\"2180514\"},{\"draft_year\":\"2020\",\"birthdate\":\"842590800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33113\",\"position\":\"WR\",\"name\":\"Johnson, Juwan\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14630\",\"weight\":\"231\",\"sportsdata_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"id\":\"14861\",\"team\":\"NOS\",\"cbs_id\":\"2186637\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32821\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14862\",\"draft_team\":\"LAC\",\"birthdate\":\"883890000\",\"name\":\"Reed, Joe\",\"draft_pick\":\"5\",\"college\":\"Virginia\",\"rotowire_id\":\"14428\",\"height\":\"73\",\"twitter_username\":\"JoeBee_2\",\"sportsdata_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"team\":\"LAC\",\"cbs_id\":\"2251260\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32812\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14863\",\"draft_team\":\"WAS\",\"birthdate\":\"892270800\",\"name\":\"Gandy-Golden, Antonio\",\"draft_pick\":\"36\",\"college\":\"Liberty\",\"rotowire_id\":\"14568\",\"height\":\"76\",\"twitter_username\":\"gandygolden11\",\"sportsdata_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"team\":\"WAS\",\"cbs_id\":\"2250521\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32831\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14864\",\"draft_team\":\"TBB\",\"birthdate\":\"904021200\",\"name\":\"Johnson, Tyler\",\"draft_pick\":\"15\",\"college\":\"Minnesota\",\"rotowire_id\":\"14432\",\"height\":\"74\",\"twitter_username\":\"T_muhneyy10\",\"sportsdata_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"team\":\"TBB\",\"cbs_id\":\"1620002\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32884\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"14865\",\"draft_team\":\"SEA\",\"birthdate\":\"902206800\",\"name\":\"Swain, Freddie\",\"draft_pick\":\"35\",\"college\":\"Florida\",\"rotowire_id\":\"14644\",\"height\":\"72\",\"sportsdata_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"team\":\"SEA\",\"cbs_id\":\"2221836\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33022\",\"position\":\"WR\",\"name\":\"Thomas, Jeff\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14382\",\"id\":\"14866\",\"team\":\"NEP\",\"cbs_id\":\"2826768\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32713\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"258\",\"id\":\"14867\",\"draft_team\":\"CHI\",\"birthdate\":\"921042000\",\"name\":\"Kmet, Cole\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14436\",\"height\":\"78\",\"twitter_username\":\"ColeKmet\",\"sportsdata_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"team\":\"CHI\",\"cbs_id\":\"2868619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32806\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14868\",\"draft_team\":\"LAR\",\"birthdate\":\"859438800\",\"name\":\"Hopkins, Brycen\",\"draft_pick\":\"30\",\"college\":\"Purdue\",\"rotowire_id\":\"14586\",\"height\":\"77\",\"twitter_username\":\"Itsbhop89\",\"sportsdata_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"team\":\"LAR\",\"cbs_id\":\"2183906\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33208\",\"position\":\"TE\",\"name\":\"Moss, Thaddeus\",\"college\":\"LSU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14524\",\"id\":\"14869\",\"team\":\"WAS\",\"cbs_id\":\"2246946\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32775\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14870\",\"draft_team\":\"NOS\",\"birthdate\":\"855118800\",\"name\":\"Trautman, Adam\",\"draft_pick\":\"41\",\"college\":\"Dayton\",\"rotowire_id\":\"14541\",\"height\":\"78\",\"sportsdata_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"team\":\"NOS\",\"cbs_id\":\"2182228\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32803\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14871\",\"draft_team\":\"SEA\",\"birthdate\":\"915771600\",\"name\":\"Parkinson, Colby\",\"draft_pick\":\"27\",\"college\":\"Stanford\",\"rotowire_id\":\"14463\",\"height\":\"79\",\"sportsdata_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"team\":\"SEA\",\"cbs_id\":\"2867522\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33064\",\"position\":\"TE\",\"name\":\"Pinkney, Jared\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14632\",\"sportsdata_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"id\":\"14872\",\"team\":\"ATL\",\"cbs_id\":\"2180558\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32788\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14873\",\"draft_team\":\"DEN\",\"birthdate\":\"893480400\",\"name\":\"Okwuegbunam, Albert\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"rotowire_id\":\"14369\",\"height\":\"77\",\"twitter_username\":\"AOkwuegbunam\",\"sportsdata_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"team\":\"DEN\",\"cbs_id\":\"2245117\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Bryant, Hunter\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14364\",\"id\":\"14874\",\"team\":\"DET\",\"cbs_id\":\"2815166\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32785\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14875\",\"draft_team\":\"CLE\",\"birthdate\":\"893307600\",\"name\":\"Bryant, Harrison\",\"draft_pick\":\"9\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14576\",\"height\":\"77\",\"twitter_username\":\"hbryant17\",\"sportsdata_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"team\":\"CLE\",\"cbs_id\":\"2241240\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32764\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14876\",\"draft_team\":\"GBP\",\"birthdate\":\"855896400\",\"name\":\"Deguara, Josiah\",\"draft_pick\":\"30\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14629\",\"height\":\"75\",\"twitter_username\":\"JosiahD5\",\"sportsdata_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"team\":\"GBP\",\"cbs_id\":\"2181108\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32672\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14877\",\"draft_team\":\"WAS\",\"birthdate\":\"924066000\",\"name\":\"Young, Chase\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"14452\",\"height\":\"77\",\"twitter_username\":\"youngchase907\",\"sportsdata_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"team\":\"WAS\",\"cbs_id\":\"2829229\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32707\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"264\",\"id\":\"14878\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Gross-Matos, Yetur\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"rotowire_id\":\"14355\",\"height\":\"77\",\"twitter_username\":\"__lobo99\",\"sportsdata_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"team\":\"CAR\",\"cbs_id\":\"2868927\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32724\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14879\",\"draft_team\":\"BUF\",\"birthdate\":\"905835600\",\"name\":\"Epenesa, A.J.\",\"draft_pick\":\"22\",\"college\":\"Iowa\",\"rotowire_id\":\"14501\",\"height\":\"77\",\"twitter_username\":\"ajepenesa24\",\"sportsdata_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"team\":\"BUF\",\"cbs_id\":\"2865969\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32817\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14880\",\"draft_team\":\"CIN\",\"birthdate\":\"893739600\",\"name\":\"Kareem, Khalid\",\"draft_pick\":\"1\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14684\",\"height\":\"76\",\"twitter_username\":\"khalid_kareem53\",\"sportsdata_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"team\":\"CIN\",\"cbs_id\":\"2240621\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Coe, Nick\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14398\",\"id\":\"14881\",\"team\":\"NEP\",\"cbs_id\":\"2257893\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"rotoworld_id\":\"60119\",\"status\":\"R\",\"stats_id\":\"32760\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14882\",\"draft_team\":\"HOU\",\"birthdate\":\"864536400\",\"name\":\"Greenard, Jonathan\",\"draft_pick\":\"26\",\"college\":\"Florida\",\"rotowire_id\":\"14550\",\"height\":\"75\",\"twitter_username\":\"jongreenard7\",\"sportsdata_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"team\":\"HOU\",\"cbs_id\":\"2181166\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32717\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"279\",\"id\":\"14883\",\"draft_team\":\"ATL\",\"birthdate\":\"894862800\",\"name\":\"Davidson, Marlon\",\"draft_pick\":\"15\",\"college\":\"Auburn\",\"rotowire_id\":\"14540\",\"height\":\"75\",\"twitter_username\":\"marlondavidson7\",\"sportsdata_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"team\":\"ATL\",\"cbs_id\":\"2222006\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32824\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14884\",\"draft_team\":\"MIA\",\"birthdate\":\"842331600\",\"name\":\"Strowbridge, Jason\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"rotowire_id\":\"14730\",\"height\":\"77\",\"sportsdata_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"team\":\"MIA\",\"cbs_id\":\"2179351\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32749\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"14885\",\"draft_team\":\"NYJ\",\"name\":\"Zuniga, Jabari\",\"draft_pick\":\"15\",\"college\":\"Florida\",\"rotowire_id\":\"14734\",\"height\":\"76\",\"twitter_username\":\"JabariZuniga\",\"sportsdata_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"team\":\"NYJ\",\"cbs_id\":\"2180452\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14886\",\"draft_team\":\"DAL\",\"birthdate\":\"908600400\",\"name\":\"Anae, Bradlee\",\"draft_pick\":\"33\",\"college\":\"Utah\",\"rotowire_id\":\"14582\",\"height\":\"75\",\"sportsdata_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"team\":\"DAL\",\"cbs_id\":\"2240496\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32678\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14887\",\"draft_team\":\"ARI\",\"birthdate\":\"901429200\",\"name\":\"Simmons, Isaiah\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"14525\",\"height\":\"75\",\"twitter_username\":\"isaiahsimmons25\",\"sportsdata_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"team\":\"ARI\",\"cbs_id\":\"2239532\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32690\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14888\",\"draft_team\":\"JAC\",\"birthdate\":\"932878800\",\"name\":\"Chaisson, K'Lavon\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"14523\",\"height\":\"76\",\"twitter_username\":\"S4CKGURU\",\"sportsdata_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"team\":\"JAC\",\"cbs_id\":\"2804551\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32693\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"234\",\"id\":\"14889\",\"draft_team\":\"LAC\",\"birthdate\":\"911192400\",\"name\":\"Murray, Kenneth\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14434\",\"height\":\"75\",\"twitter_username\":\"KennethMurray\",\"sportsdata_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"team\":\"LAC\",\"cbs_id\":\"2804138\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32767\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14890\",\"draft_team\":\"CLE\",\"birthdate\":\"922942800\",\"name\":\"Phillips, Jacob\",\"draft_pick\":\"33\",\"college\":\"LSU\",\"rotowire_id\":\"14517\",\"height\":\"76\",\"twitter_username\":\"jacobphilly\",\"sportsdata_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"team\":\"CLE\",\"cbs_id\":\"2804564\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32768\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14891\",\"draft_team\":\"BAL\",\"birthdate\":\"889074000\",\"name\":\"Harrison, Malik\",\"draft_pick\":\"34\",\"college\":\"Ohio State\",\"rotowire_id\":\"14648\",\"height\":\"75\",\"sportsdata_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"team\":\"BAL\",\"cbs_id\":\"2260979\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32697\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14892\",\"draft_team\":\"SEA\",\"birthdate\":\"877410000\",\"name\":\"Brooks, Jordyn\",\"draft_pick\":\"27\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14739\",\"height\":\"73\",\"twitter_username\":\"JordynBrooks_\",\"sportsdata_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"team\":\"SEA\",\"cbs_id\":\"2252263\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32744\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14893\",\"draft_team\":\"NOS\",\"name\":\"Baun, Zack\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14374\",\"height\":\"75\",\"twitter_username\":\"zackbizzaun\",\"sportsdata_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"team\":\"NOS\",\"cbs_id\":\"2183919\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32757\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14894\",\"draft_team\":\"NEP\",\"birthdate\":\"862462800\",\"name\":\"Jennings, Anfernee\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"14742\",\"height\":\"75\",\"twitter_username\":\"anferneejenning\",\"sportsdata_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"team\":\"NEP\",\"cbs_id\":\"2186321\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Woodward, David\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14645\",\"id\":\"14895\",\"team\":\"FA\",\"cbs_id\":\"2258285\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32698\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14896\",\"draft_team\":\"BAL\",\"birthdate\":\"934520400\",\"name\":\"Queen, Patrick\",\"draft_pick\":\"28\",\"college\":\"LSU\",\"rotowire_id\":\"14508\",\"height\":\"73\",\"twitter_username\":\"Patrickqueen_\",\"sportsdata_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"team\":\"BAL\",\"cbs_id\":\"2804566\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32677\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"318\",\"id\":\"14897\",\"draft_team\":\"CAR\",\"birthdate\":\"892616400\",\"name\":\"Brown, Derrick\",\"draft_pick\":\"7\",\"college\":\"Auburn\",\"rotowire_id\":\"13852\",\"height\":\"77\",\"twitter_username\":\"DerrickBrownAU5\",\"sportsdata_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"team\":\"CAR\",\"cbs_id\":\"2241797\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32726\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14898\",\"draft_team\":\"MIA\",\"birthdate\":\"865918800\",\"name\":\"Davis, Raekwon\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"14538\",\"height\":\"79\",\"twitter_username\":\"raekwondavis_99\",\"sportsdata_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"team\":\"MIA\",\"cbs_id\":\"2252833\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32684\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14899\",\"draft_team\":\"SFO\",\"birthdate\":\"875854800\",\"name\":\"Kinlaw, Javon\",\"draft_pick\":\"14\",\"college\":\"South Carolina\",\"rotowire_id\":\"14444\",\"height\":\"78\",\"twitter_username\":\"JavonKinlaw\",\"sportsdata_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"team\":\"SFO\",\"cbs_id\":\"2869019\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32741\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14900\",\"draft_team\":\"BAL\",\"birthdate\":\"879742800\",\"name\":\"Madubuike, Justin\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14380\",\"height\":\"75\",\"twitter_username\":\"MadubuikeJustin\",\"sportsdata_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"team\":\"BAL\",\"cbs_id\":\"2249188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32752\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"302\",\"id\":\"14901\",\"draft_team\":\"DAL\",\"birthdate\":\"853477200\",\"name\":\"Gallimore, Neville\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14451\",\"height\":\"74\",\"twitter_username\":\"path2greatwork\",\"sportsdata_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"team\":\"DAL\",\"cbs_id\":\"2179652\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32673\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14902\",\"draft_team\":\"DET\",\"birthdate\":\"917931600\",\"name\":\"Okudah, Jeff\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"14424\",\"height\":\"73\",\"twitter_username\":\"jeffokudah\",\"sportsdata_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"team\":\"DET\",\"cbs_id\":\"2804425\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32721\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"14903\",\"draft_team\":\"DAL\",\"birthdate\":\"906267600\",\"name\":\"Diggs, Trevon\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"14389\",\"height\":\"74\",\"twitter_username\":\"TrevonDiggs\",\"sportsdata_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"team\":\"DAL\",\"cbs_id\":\"2252834\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32731\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14904\",\"draft_team\":\"TEN\",\"birthdate\":\"904798800\",\"name\":\"Fulton, Kristian\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"14443\",\"height\":\"72\",\"twitter_username\":\"Kriss1_\",\"sportsdata_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"team\":\"TEN\",\"cbs_id\":\"2223248\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32679\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14905\",\"draft_team\":\"JAC\",\"birthdate\":\"907131600\",\"name\":\"Henderson, CJ\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"14367\",\"height\":\"73\",\"twitter_username\":\"HendersonChris_\",\"sportsdata_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"team\":\"JAC\",\"cbs_id\":\"2773013\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32689\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14906\",\"draft_team\":\"LVR\",\"birthdate\":\"823237200\",\"name\":\"Arnette, Damon\",\"draft_pick\":\"19\",\"college\":\"Ohio State\",\"rotowire_id\":\"14547\",\"height\":\"72\",\"twitter_username\":\"damon_arnette\",\"sportsdata_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"team\":\"LVR\",\"cbs_id\":\"2179793\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32714\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"14907\",\"draft_team\":\"CLE\",\"birthdate\":\"906267600\",\"name\":\"Delpit, Grant\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"14507\",\"height\":\"75\",\"twitter_username\":\"realgrantdelpit\",\"sportsdata_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"team\":\"CLE\",\"cbs_id\":\"2804169\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32706\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14908\",\"draft_team\":\"NYG\",\"birthdate\":\"934174800\",\"name\":\"McKinney, Xavier\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"rotowire_id\":\"14617\",\"height\":\"73\",\"twitter_username\":\"mckinney15__\",\"sportsdata_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"team\":\"NYG\",\"cbs_id\":\"2741205\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32715\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14909\",\"draft_team\":\"TBB\",\"birthdate\":\"903243600\",\"name\":\"Winfield, Antoine\",\"draft_pick\":\"13\",\"college\":\"Minnesota\",\"rotowire_id\":\"14484\",\"height\":\"69\",\"twitter_username\":\"AntoineWJr11\",\"sportsdata_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"team\":\"TBB\",\"cbs_id\":\"2239774\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32740\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14910\",\"draft_team\":\"MIA\",\"birthdate\":\"891493200\",\"name\":\"Jones, Brandon\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"rotowire_id\":\"14696\",\"height\":\"72\",\"twitter_username\":\"BlessedJones33\",\"sportsdata_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"team\":\"MIA\",\"cbs_id\":\"2246113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32738\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14911\",\"draft_team\":\"NYJ\",\"birthdate\":\"844923600\",\"name\":\"Davis, Ashtyn\",\"draft_pick\":\"4\",\"college\":\"California\",\"rotowire_id\":\"14447\",\"height\":\"73\",\"sportsdata_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"team\":\"NYJ\",\"cbs_id\":\"2180264\"},{\"draft_year\":\"2020\",\"birthdate\":\"854514000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33211\",\"position\":\"PK\",\"name\":\"Blankenship, Rodrigo\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14437\",\"weight\":\"191\",\"sportsdata_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"id\":\"14912\",\"team\":\"IND\",\"cbs_id\":\"2183949\"},{\"draft_year\":\"2018\",\"birthdate\":\"773298000\",\"draft_team\":\"FA\",\"stats_id\":\"31669\",\"position\":\"DE\",\"name\":\"Walker, Cavon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13244\",\"weight\":\"278\",\"sportsdata_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"id\":\"14913\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"640933200\",\"draft_team\":\"FA\",\"stats_id\":\"32668\",\"position\":\"PK\",\"name\":\"Hajrullahu, Lirim\",\"college\":\"Western Ontario\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14808\",\"weight\":\"205\",\"sportsdata_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"id\":\"14914\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"799563600\",\"draft_team\":\"FA\",\"stats_id\":\"32667\",\"position\":\"PK\",\"name\":\"MacGinnis, Austin\",\"college\":\"Kentucky\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14354\",\"weight\":\"185\",\"sportsdata_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"id\":\"14915\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"878706000\",\"draft_team\":\"FA\",\"stats_id\":\"32097\",\"position\":\"CB\",\"name\":\"Smith, Saivion\",\"college\":\"Alabama\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13589\",\"jersey\":\"35\",\"weight\":\"199\",\"sportsdata_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"id\":\"14916\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852613200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32669\",\"position\":\"RB\",\"name\":\"Patrick, Jacques\",\"college\":\"Florida State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13964\",\"weight\":\"236\",\"sportsdata_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"id\":\"14917\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32686\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14918\",\"draft_team\":\"ATL\",\"birthdate\":\"906526800\",\"name\":\"Terrell, A.J.\",\"draft_pick\":\"16\",\"college\":\"Clemson\",\"rotowire_id\":\"14526\",\"height\":\"74\",\"twitter_username\":\"ajterrell_8\",\"sportsdata_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"team\":\"ATL\",\"cbs_id\":\"2809212\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32700\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14919\",\"draft_team\":\"MIA\",\"birthdate\":\"943678800\",\"name\":\"Igbinoghene, Noah\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"14713\",\"height\":\"71\",\"twitter_username\":\"Noah_Igbo9\",\"sportsdata_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"team\":\"MIA\",\"cbs_id\":\"2829987\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32701\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14920\",\"draft_team\":\"MIN\",\"birthdate\":\"850366800\",\"name\":\"Gladney, Jeff\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"14548\",\"height\":\"72\",\"sportsdata_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"team\":\"MIN\",\"cbs_id\":\"2180855\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32710\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14921\",\"draft_team\":\"NEP\",\"birthdate\":\"827470800\",\"name\":\"Dugger, Kyle\",\"draft_pick\":\"5\",\"college\":\"Lenoir-Rhyne University\",\"rotowire_id\":\"14542\",\"height\":\"74\",\"twitter_username\":\"KingDugg_3\",\"sportsdata_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"team\":\"NEP\",\"cbs_id\":\"3150388\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32709\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14922\",\"draft_team\":\"HOU\",\"birthdate\":\"899960400\",\"name\":\"Blacklock, Ross\",\"draft_pick\":\"8\",\"college\":\"TCU\",\"rotowire_id\":\"14406\",\"height\":\"76\",\"twitter_username\":\"1krozayy\",\"sportsdata_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"team\":\"HOU\",\"cbs_id\":\"2240321\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32718\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14923\",\"draft_team\":\"SEA\",\"birthdate\":\"859179600\",\"name\":\"Taylor, Darrell\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"14649\",\"height\":\"75\",\"twitter_username\":\"darrelltaylorst\",\"sportsdata_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"team\":\"SEA\",\"cbs_id\":\"2180538\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32720\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14924\",\"draft_team\":\"CHI\",\"name\":\"Johnson, Jaylon\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14627\",\"height\":\"72\",\"twitter_username\":\"NBAxJay1\",\"sportsdata_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"team\":\"CHI\",\"cbs_id\":\"2827532\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32730\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14925\",\"draft_team\":\"NEP\",\"birthdate\":\"906094800\",\"name\":\"Uche, Josh\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"14477\",\"height\":\"74\",\"twitter_username\":\"_Uche35\",\"sportsdata_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"team\":\"NEP\",\"cbs_id\":\"2260670\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32733\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14926\",\"draft_team\":\"KCC\",\"birthdate\":\"887518800\",\"name\":\"Gay, Willie\",\"draft_pick\":\"31\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14520\",\"height\":\"74\",\"twitter_username\":\"WillieG___\",\"sportsdata_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32734\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14927\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Chinn, Jeremy\",\"draft_pick\":\"32\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14623\",\"height\":\"75\",\"twitter_username\":\"ChinnJeremy2\",\"sportsdata_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"team\":\"CAR\",\"cbs_id\":\"2247190\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32735\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14928\",\"draft_team\":\"CIN\",\"birthdate\":\"836802000\",\"name\":\"Wilson, Logan\",\"draft_pick\":\"1\",\"college\":\"Wyoming\",\"rotowire_id\":\"14647\",\"height\":\"74\",\"twitter_username\":\"ljw21\",\"sportsdata_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"team\":\"CIN\",\"cbs_id\":\"2181091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32737\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"241\",\"id\":\"14929\",\"draft_team\":\"DET\",\"birthdate\":\"883198800\",\"name\":\"Okwara, Julian\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14448\",\"height\":\"77\",\"twitter_username\":\"julian_okwara\",\"sportsdata_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"team\":\"DET\",\"cbs_id\":\"2260688\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32743\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14930\",\"draft_team\":\"JAC\",\"name\":\"Hamilton, Davon\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"14714\",\"height\":\"76\",\"twitter_username\":\"dmhamilton53\",\"sportsdata_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"team\":\"JAC\",\"cbs_id\":\"2179811\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32747\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14931\",\"draft_team\":\"DEN\",\"birthdate\":\"874040400\",\"name\":\"Ojemudia, Michael\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"14711\",\"height\":\"73\",\"twitter_username\":\"GotMo_J\",\"sportsdata_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"team\":\"DEN\",\"cbs_id\":\"2179727\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"252\",\"id\":\"14932\",\"draft_team\":\"LAR\",\"name\":\"Lewis, Terrell\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"rotowire_id\":\"14390\",\"height\":\"77\",\"twitter_username\":\"_real24_\",\"sportsdata_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"team\":\"LAR\",\"cbs_id\":\"2252836\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32755\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"14933\",\"draft_team\":\"IND\",\"birthdate\":\"903934800\",\"name\":\"Blackmon, Julian\",\"draft_pick\":\"21\",\"college\":\"Utah\",\"rotowire_id\":\"14704\",\"height\":\"73\",\"twitter_username\":\"jumpmanjuice23\",\"sportsdata_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"team\":\"IND\",\"cbs_id\":\"2253091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32758\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14934\",\"draft_team\":\"CLE\",\"birthdate\":\"880261200\",\"name\":\"Elliott, Jordan\",\"draft_pick\":\"24\",\"college\":\"Missouri\",\"rotowire_id\":\"14353\",\"height\":\"76\",\"twitter_username\":\"bigj5k\",\"sportsdata_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"team\":\"CLE\",\"cbs_id\":\"2246110\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32759\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14935\",\"draft_team\":\"MIN\",\"birthdate\":\"904798800\",\"name\":\"Dantzler, Cameron\",\"draft_pick\":\"25\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14363\",\"height\":\"74\",\"twitter_username\":\"camdantzler3\",\"sportsdata_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"team\":\"MIN\",\"cbs_id\":\"2248633\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32761\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14936\",\"draft_team\":\"NEP\",\"birthdate\":\"871534800\",\"name\":\"Asiasi, Devin\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"14425\",\"height\":\"75\",\"twitter_username\":\"ASI2X\",\"sportsdata_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"team\":\"NEP\",\"cbs_id\":\"2260483\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32765\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14937\",\"draft_team\":\"DEN\",\"birthdate\":\"875163600\",\"name\":\"Agim, McTelvin\",\"draft_pick\":\"31\",\"college\":\"Arkansas\",\"rotowire_id\":\"14602\",\"height\":\"75\",\"twitter_username\":\"So_Splash\",\"sportsdata_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"team\":\"DEN\",\"cbs_id\":\"2240258\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32770\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14938\",\"draft_team\":\"LVR\",\"birthdate\":\"841986000\",\"name\":\"Muse, Tanner\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"14690\",\"height\":\"75\",\"twitter_username\":\"tanner_muse\",\"sportsdata_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"team\":\"LVR\",\"cbs_id\":\"2179227\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32771\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14939\",\"draft_team\":\"NEP\",\"birthdate\":\"924066000\",\"name\":\"Keene, Dalton\",\"draft_pick\":\"37\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14559\",\"height\":\"76\",\"twitter_username\":\"DaltonKeene18\",\"sportsdata_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"team\":\"NEP\",\"cbs_id\":\"2805113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32772\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"14940\",\"draft_team\":\"PIT\",\"birthdate\":\"870930000\",\"name\":\"Highsmith, Alex\",\"draft_pick\":\"38\",\"college\":\"North Carolina-Charlotte\",\"rotowire_id\":\"14724\",\"height\":\"76\",\"twitter_username\":\"highsmith34\",\"sportsdata_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"team\":\"PIT\",\"cbs_id\":\"2241393\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32773\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14941\",\"draft_team\":\"PHI\",\"birthdate\":\"902293200\",\"name\":\"Taylor, Davion\",\"draft_pick\":\"39\",\"college\":\"Colorado\",\"rotowire_id\":\"14751\",\"height\":\"74\",\"twitter_username\":\"daviontaylot\",\"sportsdata_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"team\":\"PHI\",\"cbs_id\":\"2962569\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32774\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14942\",\"draft_team\":\"LAR\",\"birthdate\":\"910846800\",\"name\":\"Burgess, Terrell\",\"draft_pick\":\"40\",\"college\":\"Utah\",\"rotowire_id\":\"14702\",\"height\":\"72\",\"twitter_username\":\"titaniumt98\",\"sportsdata_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"team\":\"LAR\",\"cbs_id\":\"2240499\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32777\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14943\",\"draft_team\":\"CIN\",\"birthdate\":\"874818000\",\"name\":\"Davis-Gaither, Akeem\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14661\",\"height\":\"74\",\"twitter_username\":\"AkeemDavis16\",\"sportsdata_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"team\":\"CIN\",\"cbs_id\":\"2182263\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32780\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14944\",\"draft_team\":\"NYG\",\"birthdate\":\"898578000\",\"name\":\"Holmes, Darney\",\"draft_pick\":\"4\",\"college\":\"UCLA\",\"rotowire_id\":\"14535\",\"height\":\"70\",\"twitter_username\":\"prowaydarnay\",\"sportsdata_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32783\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"14945\",\"draft_team\":\"CAR\",\"birthdate\":\"885186000\",\"name\":\"Pride, Troy\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14581\",\"height\":\"71\",\"twitter_username\":\"TroyPride18\",\"sportsdata_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"team\":\"CAR\",\"cbs_id\":\"2260689\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32784\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"335\",\"id\":\"14946\",\"draft_team\":\"ARI\",\"birthdate\":\"903848400\",\"name\":\"Fotu, Leki\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"14712\",\"height\":\"77\",\"twitter_username\":\"LekiFotu\",\"sportsdata_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"team\":\"ARI\",\"cbs_id\":\"2240504\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32787\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14947\",\"draft_team\":\"MIN\",\"birthdate\":\"878274000\",\"name\":\"Wonnum, D.J.\",\"draft_pick\":\"11\",\"college\":\"South Carolina\",\"rotowire_id\":\"14612\",\"height\":\"77\",\"twitter_username\":\"dwonnum\",\"sportsdata_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"team\":\"MIN\",\"cbs_id\":\"2252822\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32789\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14948\",\"draft_team\":\"ATL\",\"birthdate\":\"872744400\",\"name\":\"Walker, Mykal\",\"draft_pick\":\"13\",\"college\":\"Fresno State\",\"rotowire_id\":\"14754\",\"height\":\"75\",\"twitter_username\":\"MykalWalker3\",\"sportsdata_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"team\":\"ATL\",\"cbs_id\":\"2865637\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32793\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14949\",\"draft_team\":\"DAL\",\"birthdate\":\"860994000\",\"name\":\"Robinson, Reggie\",\"draft_pick\":\"17\",\"college\":\"Tulsa\",\"rotowire_id\":\"14708\",\"height\":\"73\",\"twitter_username\":\"RegRobII\",\"sportsdata_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32797\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14950\",\"draft_team\":\"PHI\",\"birthdate\":\"869806800\",\"name\":\"Wallace, K'Von\",\"draft_pick\":\"21\",\"college\":\"Clemson\",\"rotowire_id\":\"14686\",\"height\":\"71\",\"twitter_username\":\"KVonWallace\",\"sportsdata_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"team\":\"PHI\",\"cbs_id\":\"2239538\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32800\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"14951\",\"draft_team\":\"MIN\",\"birthdate\":\"916808400\",\"name\":\"Lynch, James\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"14499\",\"height\":\"76\",\"twitter_username\":\"JamesHusker38\",\"sportsdata_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"team\":\"MIN\",\"cbs_id\":\"2868531\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32801\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"308\",\"id\":\"14952\",\"draft_team\":\"ARI\",\"birthdate\":\"904194000\",\"name\":\"Lawrence, Rashard\",\"draft_pick\":\"25\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14717\",\"height\":\"74\",\"twitter_username\":\"Rashard_99\",\"sportsdata_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"team\":\"ARI\",\"cbs_id\":\"2223249\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32802\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14953\",\"draft_team\":\"MIN\",\"birthdate\":\"843022800\",\"name\":\"Dye, Troy\",\"draft_pick\":\"26\",\"college\":\"Oregon\",\"rotowire_id\":\"14740\",\"height\":\"76\",\"twitter_username\":\"tdye15dbtroy\",\"sportsdata_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"team\":\"MIN\",\"cbs_id\":\"2221826\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32804\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14954\",\"draft_team\":\"ATL\",\"birthdate\":\"872485200\",\"name\":\"Hawkins, Jaylinn\",\"draft_pick\":\"28\",\"college\":\"California\",\"rotowire_id\":\"14697\",\"height\":\"74\",\"twitter_username\":\"jhawko6\",\"sportsdata_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"team\":\"ATL\",\"cbs_id\":\"2180267\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32807\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"14955\",\"draft_team\":\"JAC\",\"birthdate\":\"923288400\",\"name\":\"Scott, Josiah\",\"draft_pick\":\"31\",\"college\":\"Michigan State\",\"rotowire_id\":\"14413\",\"height\":\"70\",\"twitter_username\":\"josiahscott7\",\"sportsdata_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"team\":\"JAC\",\"cbs_id\":\"2807092\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32808\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14956\",\"draft_team\":\"KCC\",\"birthdate\":\"853822800\",\"name\":\"Sneed, L'Jarius\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14688\",\"height\":\"73\",\"sportsdata_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"team\":\"KCC\",\"cbs_id\":\"2239881\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32809\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14957\",\"draft_team\":\"LVR\",\"birthdate\":\"899701200\",\"name\":\"Robertson, Amik\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14709\",\"height\":\"69\",\"twitter_username\":\"_youngtruth7\",\"sportsdata_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"team\":\"LVR\",\"cbs_id\":\"2816298\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32810\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14958\",\"draft_team\":\"JAC\",\"birthdate\":\"878014800\",\"name\":\"Quarterman, Shaquille\",\"draft_pick\":\"34\",\"college\":\"Miami\",\"rotowire_id\":\"14747\",\"height\":\"73\",\"sportsdata_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"team\":\"JAC\",\"cbs_id\":\"2221934\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32811\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"181\",\"id\":\"14959\",\"draft_team\":\"HOU\",\"birthdate\":\"832136400\",\"name\":\"Reid, John\",\"draft_pick\":\"35\",\"college\":\"Penn State\",\"rotowire_id\":\"14710\",\"height\":\"70\",\"twitter_username\":\"John_Doe_25\",\"sportsdata_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"team\":\"HOU\",\"cbs_id\":\"2186643\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32818\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14960\",\"draft_team\":\"SEA\",\"birthdate\":\"896763600\",\"name\":\"Robinson, Alton\",\"draft_pick\":\"2\",\"college\":\"Syracuse\",\"rotowire_id\":\"14727\",\"height\":\"76\",\"sportsdata_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"team\":\"SEA\",\"cbs_id\":\"2868213\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32822\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14961\",\"draft_team\":\"CAR\",\"name\":\"Robinson, Kenny\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"rotowire_id\":\"14787\",\"height\":\"74\",\"twitter_username\":\"krob2__\",\"sportsdata_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"team\":\"CAR\",\"cbs_id\":\"2835561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32825\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"268\",\"id\":\"14962\",\"draft_team\":\"CHI\",\"birthdate\":\"866178000\",\"name\":\"Gipson, Trevis\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"rotowire_id\":\"14680\",\"height\":\"76\",\"twitter_username\":\"trevisgipson\",\"sportsdata_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"team\":\"CHI\",\"cbs_id\":\"2181277\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32827\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14963\",\"draft_team\":\"JAC\",\"birthdate\":\"899269200\",\"name\":\"Thomas, Daniel\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"14687\",\"height\":\"71\",\"twitter_username\":\"gamechanger021\",\"sportsdata_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"team\":\"JAC\",\"cbs_id\":\"2241807\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32828\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14964\",\"draft_team\":\"NYJ\",\"birthdate\":\"863326800\",\"name\":\"Hall, Bryce\",\"draft_pick\":\"12\",\"college\":\"Virginia\",\"rotowire_id\":\"14445\",\"height\":\"73\",\"sportsdata_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"team\":\"NYJ\",\"cbs_id\":\"2251254\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32829\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14965\",\"draft_team\":\"NEP\",\"birthdate\":\"849934800\",\"name\":\"Rohrwasser, Justin\",\"draft_pick\":\"13\",\"college\":\"Marshall\",\"rotowire_id\":\"14822\",\"height\":\"75\",\"sportsdata_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"team\":\"NEP\",\"cbs_id\":\"2194734\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32832\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14966\",\"draft_team\":\"WAS\",\"birthdate\":\"881384400\",\"name\":\"Hudson, Khaleke\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"14480\",\"height\":\"72\",\"twitter_username\":\"KhalekeHudson\",\"sportsdata_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"team\":\"WAS\",\"cbs_id\":\"2260652\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32833\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14967\",\"draft_team\":\"CHI\",\"birthdate\":\"881816400\",\"name\":\"Vildor, Kindle\",\"draft_pick\":\"17\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14706\",\"height\":\"71\",\"twitter_username\":\"ThePremier20\",\"sportsdata_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"team\":\"CHI\",\"cbs_id\":\"2252448\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32834\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14968\",\"draft_team\":\"MIA\",\"birthdate\":\"902120400\",\"name\":\"Weaver, Curtis\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"14409\",\"height\":\"75\",\"twitter_username\":\"curtisweaver99\",\"sportsdata_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"team\":\"MIA\",\"cbs_id\":\"2257946\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32838\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14969\",\"draft_team\":\"PHI\",\"birthdate\":\"833518800\",\"name\":\"Hightower, John\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"rotowire_id\":\"14567\",\"height\":\"74\",\"sportsdata_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"team\":\"PHI\",\"cbs_id\":\"2969061\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32839\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14970\",\"draft_team\":\"MIN\",\"name\":\"Hand, Harrison\",\"draft_pick\":\"23\",\"college\":\"Temple\",\"rotowire_id\":\"14522\",\"height\":\"72\",\"twitter_username\":\"__harry22\",\"sportsdata_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"team\":\"MIN\",\"cbs_id\":\"2868561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32840\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14971\",\"draft_team\":\"BAL\",\"birthdate\":\"849675600\",\"name\":\"Washington, Broderick\",\"draft_pick\":\"24\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14720\",\"height\":\"75\",\"sportsdata_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"team\":\"BAL\",\"cbs_id\":\"2185746\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32841\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14972\",\"draft_team\":\"HOU\",\"name\":\"Coulter, Isaiah\",\"draft_pick\":\"25\",\"college\":\"Rhode Island\",\"rotowire_id\":\"14537\",\"height\":\"75\",\"sportsdata_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"team\":\"HOU\",\"cbs_id\":\"2830035\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32842\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14973\",\"draft_team\":\"DET\",\"birthdate\":\"893048400\",\"name\":\"Huntley, Jason\",\"draft_pick\":\"26\",\"college\":\"New Mexico State\",\"rotowire_id\":\"14796\",\"height\":\"69\",\"twitter_username\":\"thejasonhuntley\",\"sportsdata_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"team\":\"DET\",\"cbs_id\":\"2239939\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32843\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14974\",\"draft_team\":\"CHI\",\"birthdate\":\"878101200\",\"name\":\"Mooney, Darnell\",\"draft_pick\":\"27\",\"college\":\"Tulane\",\"rotowire_id\":\"14510\",\"height\":\"71\",\"twitter_username\":\"Darnell_M1\",\"sportsdata_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"team\":\"CHI\",\"cbs_id\":\"2240651\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32844\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"291\",\"id\":\"14975\",\"draft_team\":\"TEN\",\"birthdate\":\"861858000\",\"name\":\"Murchison, Larrell\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14718\",\"height\":\"75\",\"twitter_username\":\"Murchboy92\",\"sportsdata_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"team\":\"TEN\",\"cbs_id\":\"2865164\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32845\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14976\",\"draft_team\":\"GBP\",\"birthdate\":\"898059600\",\"name\":\"Martin, Kamal\",\"draft_pick\":\"29\",\"college\":\"Minnesota\",\"rotowire_id\":\"14385\",\"height\":\"75\",\"twitter_username\":\"KamalMartin6\",\"sportsdata_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"team\":\"GBP\",\"cbs_id\":\"2239765\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32846\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14977\",\"draft_team\":\"MIN\",\"birthdate\":\"865918800\",\"name\":\"Osborn, K.J.\",\"draft_pick\":\"30\",\"college\":\"Miami\",\"rotowire_id\":\"14641\",\"height\":\"72\",\"sportsdata_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"team\":\"MIN\",\"cbs_id\":\"2184383\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32847\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14978\",\"draft_team\":\"KCC\",\"birthdate\":\"881211600\",\"name\":\"Danna, Michael\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"14823\",\"height\":\"74\",\"twitter_username\":\"M_Danna4\",\"sportsdata_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"team\":\"KCC\",\"cbs_id\":\"2180090\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32848\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14979\",\"draft_team\":\"DEN\",\"birthdate\":\"840603600\",\"name\":\"Strnad, Justin\",\"draft_pick\":\"32\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14757\",\"height\":\"75\",\"twitter_username\":\"jsgarbs\",\"sportsdata_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"team\":\"DEN\",\"cbs_id\":\"2186413\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32852\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14980\",\"draft_team\":\"NYG\",\"birthdate\":\"891406800\",\"name\":\"Brown, Cam\",\"draft_pick\":\"4\",\"college\":\"Penn State\",\"rotowire_id\":\"14596\",\"height\":\"77\",\"sportsdata_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"team\":\"NYG\",\"cbs_id\":\"2251294\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32854\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14981\",\"draft_team\":\"CAR\",\"birthdate\":\"845614800\",\"name\":\"Roy, Bravvion\",\"draft_pick\":\"5\",\"college\":\"Baylor\",\"rotowire_id\":\"14824\",\"height\":\"73\",\"twitter_username\":\"brave_roy\",\"sportsdata_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"team\":\"CAR\",\"cbs_id\":\"2253081\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32856\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14982\",\"draft_team\":\"LAC\",\"birthdate\":\"874472400\",\"name\":\"Gilman, Alohi\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14521\",\"height\":\"71\",\"twitter_username\":\"alohigilman\",\"sportsdata_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"team\":\"LAC\",\"cbs_id\":\"2868542\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32858\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14983\",\"draft_team\":\"BUF\",\"birthdate\":\"855896400\",\"name\":\"Bass, Tyler\",\"draft_pick\":\"9\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14609\",\"height\":\"70\",\"twitter_username\":\"tbass_xvi\",\"sportsdata_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"team\":\"BUF\",\"cbs_id\":\"2188356\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32860\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14984\",\"draft_team\":\"SFO\",\"birthdate\":\"876978000\",\"name\":\"Woerner, Charlie\",\"draft_pick\":\"11\",\"college\":\"Georgia\",\"rotowire_id\":\"14608\",\"height\":\"77\",\"sportsdata_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"team\":\"SFO\",\"cbs_id\":\"2248629\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32861\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14985\",\"draft_team\":\"NYJ\",\"birthdate\":\"880347600\",\"name\":\"Mann, Braden\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14654\",\"height\":\"71\",\"twitter_username\":\"MannBraden\",\"sportsdata_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32863\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"14986\",\"draft_team\":\"IND\",\"birthdate\":\"853304400\",\"name\":\"Windsor, Robert\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14613\",\"height\":\"77\",\"twitter_username\":\"RobertWindsor54\",\"sportsdata_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"team\":\"IND\",\"cbs_id\":\"2186647\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32864\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14987\",\"draft_team\":\"TBB\",\"birthdate\":\"840690000\",\"name\":\"Davis, Khalil\",\"draft_pick\":\"15\",\"college\":\"Nebraska\",\"rotowire_id\":\"14682\",\"height\":\"74\",\"twitter_username\":\"khalildaish95\",\"sportsdata_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"team\":\"TBB\",\"cbs_id\":\"2179622\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32866\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14988\",\"draft_team\":\"PHI\",\"birthdate\":\"860475600\",\"name\":\"Bradley, Shaun\",\"draft_pick\":\"17\",\"college\":\"Temple\",\"rotowire_id\":\"14737\",\"height\":\"73\",\"twitter_username\":\"Sdot_Bradley5\",\"sportsdata_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"team\":\"PHI\",\"cbs_id\":\"2239597\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32867\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14989\",\"draft_team\":\"DET\",\"birthdate\":\"865054800\",\"name\":\"Penisini, John\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14719\",\"height\":\"74\",\"twitter_username\":\"Dub_jayy_boy\",\"sportsdata_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"team\":\"DET\",\"cbs_id\":\"2827536\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32868\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14990\",\"draft_team\":\"PIT\",\"birthdate\":\"909550800\",\"name\":\"Brooks, Antoine\",\"draft_pick\":\"19\",\"college\":\"Maryland\",\"rotowire_id\":\"14595\",\"height\":\"71\",\"twitter_username\":\"TwanDoee\",\"sportsdata_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32869\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14991\",\"draft_team\":\"LAR\",\"birthdate\":\"888987600\",\"name\":\"Fuller, Jordan\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"14698\",\"height\":\"74\",\"twitter_username\":\"j_fuller4\",\"sportsdata_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"team\":\"LAR\",\"cbs_id\":\"2260978\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32870\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14992\",\"draft_team\":\"PHI\",\"birthdate\":\"897368400\",\"name\":\"Watkins, Quez\",\"draft_pick\":\"21\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"14464\",\"height\":\"74\",\"twitter_username\":\"AdamSchefter\",\"sportsdata_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"team\":\"PHI\",\"cbs_id\":\"2262953\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32872\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14993\",\"draft_team\":\"ARI\",\"birthdate\":\"902811600\",\"name\":\"Weaver, Evan\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"14752\",\"height\":\"75\",\"twitter_username\":\"Weavin_it\",\"sportsdata_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"team\":\"ARI\",\"cbs_id\":\"2250836\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32874\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"248\",\"id\":\"14994\",\"draft_team\":\"NEP\",\"birthdate\":\"907390800\",\"name\":\"Maluia, Cassh\",\"draft_pick\":\"25\",\"college\":\"Wyoming\",\"rotowire_id\":\"14826\",\"height\":\"72\",\"twitter_username\":\"cassh7mula\",\"sportsdata_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"team\":\"NEP\",\"cbs_id\":\"2258320\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32875\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14995\",\"draft_team\":\"MIN\",\"birthdate\":\"885358800\",\"name\":\"Metellus, Josh\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"rotowire_id\":\"14479\",\"height\":\"72\",\"twitter_username\":\"NoExcuses_23\",\"sportsdata_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"team\":\"MIN\",\"cbs_id\":\"2260662\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32876\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14996\",\"draft_team\":\"JAC\",\"birthdate\":\"859957200\",\"name\":\"Davis, Tyler\",\"draft_pick\":\"27\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14827\",\"height\":\"76\",\"twitter_username\":\"Tyler_Davis9\",\"sportsdata_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"team\":\"JAC\",\"cbs_id\":\"2182811\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32881\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"14997\",\"draft_team\":\"IND\",\"birthdate\":\"884149200\",\"name\":\"Rodgers, Isaiah\",\"draft_pick\":\"32\",\"college\":\"Massachusetts\",\"rotowire_id\":\"14828\",\"height\":\"70\",\"twitter_username\":\"rodgers_isaiah\",\"sportsdata_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"team\":\"IND\",\"cbs_id\":\"2261492\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32882\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14998\",\"draft_team\":\"IND\",\"birthdate\":\"902379600\",\"name\":\"Patmon, Dezmon\",\"draft_pick\":\"33\",\"college\":\"Washington State\",\"rotowire_id\":\"14643\",\"height\":\"76\",\"twitter_username\":\"dadpat7\",\"sportsdata_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"team\":\"IND\",\"cbs_id\":\"2221990\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32883\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"226\",\"id\":\"14999\",\"draft_team\":\"IND\",\"birthdate\":\"835938000\",\"name\":\"Glasgow, Jordan\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"14799\",\"height\":\"73\",\"sportsdata_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"team\":\"IND\",\"cbs_id\":\"2185709\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32885\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15000\",\"draft_team\":\"CIN\",\"birthdate\":\"857710800\",\"name\":\"Bailey, Markus\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"rotowire_id\":\"14736\",\"height\":\"73\",\"twitter_username\":\"mb_boiler21\",\"sportsdata_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"team\":\"CIN\",\"cbs_id\":\"2183896\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32886\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"15001\",\"draft_team\":\"WAS\",\"birthdate\":\"922856400\",\"name\":\"Curl, Kamren\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"rotowire_id\":\"14381\",\"height\":\"74\",\"twitter_username\":\"KCurl_2\",\"sportsdata_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"team\":\"WAS\",\"cbs_id\":\"2866171\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32888\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"15002\",\"draft_team\":\"NYG\",\"birthdate\":\"869461200\",\"name\":\"Coughlin, Carter\",\"draft_pick\":\"4\",\"college\":\"Minnesota\",\"rotowire_id\":\"14580\",\"height\":\"76\",\"twitter_username\":\"Cmoe34\",\"sportsdata_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"team\":\"NYG\",\"cbs_id\":\"2239754\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32889\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15003\",\"draft_team\":\"BAL\",\"birthdate\":\"924498000\",\"name\":\"Stone, Geno\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"14474\",\"height\":\"71\",\"twitter_username\":\"GenoStone22\",\"sportsdata_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"team\":\"BAL\",\"cbs_id\":\"2867170\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32891\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"184\",\"id\":\"15004\",\"draft_team\":\"CAR\",\"birthdate\":\"896936400\",\"name\":\"Thomas-Oliver, Stantley\",\"draft_pick\":\"7\",\"college\":\"Florida International\",\"rotowire_id\":\"14707\",\"height\":\"74\",\"twitter_username\":\"__Alcatraz21\",\"sportsdata_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"team\":\"CAR\",\"cbs_id\":\"2262783\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32895\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15005\",\"draft_team\":\"MIN\",\"birthdate\":\"869547600\",\"name\":\"Willekes, Kenny\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"14732\",\"height\":\"76\",\"twitter_username\":\"kennyw97\",\"sportsdata_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"team\":\"MIN\",\"cbs_id\":\"2186438\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32898\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"15006\",\"draft_team\":\"ATL\",\"birthdate\":\"849762000\",\"name\":\"Hofrichter, Sterling\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"rotowire_id\":\"14653\",\"height\":\"69\",\"twitter_username\":\"shofrichter10\",\"sportsdata_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"team\":\"ATL\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32899\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"15007\",\"draft_team\":\"WAS\",\"birthdate\":\"870238800\",\"name\":\"Smith-Williams, James\",\"draft_pick\":\"15\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14729\",\"height\":\"75\",\"twitter_username\":\"jacsw3\",\"sportsdata_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"team\":\"WAS\",\"cbs_id\":\"2179368\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32901\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15008\",\"draft_team\":\"DAL\",\"birthdate\":\"848811600\",\"name\":\"DiNucci, Ben\",\"draft_pick\":\"17\",\"college\":\"James Madison\",\"rotowire_id\":\"14832\",\"height\":\"75\",\"twitter_username\":\"B_DiNucci6\",\"sportsdata_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"team\":\"DAL\",\"cbs_id\":\"2179411\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32902\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"15009\",\"draft_team\":\"PIT\",\"birthdate\":\"840690000\",\"name\":\"Davis, Carlos\",\"draft_pick\":\"18\",\"college\":\"Nebraska\",\"rotowire_id\":\"14681\",\"height\":\"74\",\"sportsdata_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"team\":\"PIT\",\"cbs_id\":\"2179621\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32903\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"247\",\"id\":\"15010\",\"draft_team\":\"PHI\",\"name\":\"Toohill, Casey\",\"draft_pick\":\"19\",\"college\":\"Stanford\",\"rotowire_id\":\"14753\",\"height\":\"76\",\"twitter_username\":\"CaseyToohill\",\"sportsdata_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"team\":\"PHI\",\"cbs_id\":\"2186841\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32904\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"232\",\"id\":\"15011\",\"draft_team\":\"LAR\",\"birthdate\":\"839480400\",\"name\":\"Johnston, Clay\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"rotowire_id\":\"14743\",\"height\":\"73\",\"twitter_username\":\"C_Johnston4\",\"sportsdata_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"team\":\"LAR\",\"cbs_id\":\"2189507\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32905\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"285\",\"id\":\"15012\",\"draft_team\":\"DET\",\"birthdate\":\"851922000\",\"name\":\"Cornell, Jashon\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"14833\",\"height\":\"75\",\"twitter_username\":\"JayRock_9\",\"sportsdata_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"team\":\"DET\",\"cbs_id\":\"2179802\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32906\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"15013\",\"draft_team\":\"GBP\",\"birthdate\":\"873954000\",\"name\":\"Scott, Vernon\",\"draft_pick\":\"22\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14779\",\"height\":\"74\",\"twitter_username\":\"OfficialVern_\",\"sportsdata_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"team\":\"GBP\",\"cbs_id\":\"2240340\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32907\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"15014\",\"draft_team\":\"KCC\",\"birthdate\":\"879051600\",\"name\":\"Keyes, Thakarius\",\"draft_pick\":\"23\",\"college\":\"Tulane\",\"rotowire_id\":\"14579\",\"height\":\"73\",\"twitter_username\":\"TzKeyes\",\"sportsdata_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32908\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15015\",\"draft_team\":\"NYG\",\"birthdate\":\"881125200\",\"name\":\"Brunson, T.J.\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"rotowire_id\":\"14834\",\"height\":\"73\",\"sportsdata_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"team\":\"NYG\",\"cbs_id\":\"2252794\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32909\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15016\",\"draft_team\":\"BUF\",\"birthdate\":\"849243600\",\"name\":\"Jackson, Dane\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14549\",\"height\":\"71\",\"twitter_username\":\"Djack11_\",\"sportsdata_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"team\":\"BUF\",\"cbs_id\":\"2179418\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32910\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15017\",\"draft_team\":\"NOS\",\"birthdate\":\"850626000\",\"name\":\"Stevens, Tommy\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14527\",\"height\":\"77\",\"sportsdata_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"team\":\"NOS\",\"cbs_id\":\"2179839\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32911\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15018\",\"draft_team\":\"TBB\",\"birthdate\":\"853736400\",\"name\":\"Russell, Chapelle\",\"draft_pick\":\"27\",\"college\":\"Temple\",\"rotowire_id\":\"14755\",\"height\":\"73\",\"twitter_username\":\"DeuceRussell36\",\"sportsdata_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"team\":\"TBB\",\"cbs_id\":\"2186632\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32912\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15019\",\"draft_team\":\"GBP\",\"birthdate\":\"933138000\",\"name\":\"Garvin, Jonathan\",\"draft_pick\":\"28\",\"college\":\"Miami\",\"rotowire_id\":\"14365\",\"height\":\"76\",\"sportsdata_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"team\":\"GBP\",\"cbs_id\":\"2804100\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32913\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"186\",\"id\":\"15020\",\"draft_team\":\"TEN\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Chris\",\"draft_pick\":\"29\",\"college\":\"Marshall\",\"rotowire_id\":\"14835\",\"height\":\"72\",\"sportsdata_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"team\":\"TEN\",\"cbs_id\":\"3679\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32915\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15021\",\"draft_team\":\"TBB\",\"birthdate\":\"891493200\",\"name\":\"Calais, Raymond\",\"draft_pick\":\"31\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"14625\",\"height\":\"69\",\"twitter_username\":\"king_calais\",\"sportsdata_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"team\":\"TBB\",\"cbs_id\":\"2252175\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32916\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15022\",\"draft_team\":\"MIA\",\"birthdate\":\"861426000\",\"name\":\"Perry, Malcolm\",\"draft_pick\":\"32\",\"college\":\"Navy\",\"rotowire_id\":\"14504\",\"height\":\"69\",\"sportsdata_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"team\":\"MIA\",\"cbs_id\":\"2251971\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32917\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15023\",\"draft_team\":\"NYG\",\"birthdate\":\"864018000\",\"name\":\"Williamson, Chris\",\"draft_pick\":\"33\",\"college\":\"Minnesota\",\"rotowire_id\":\"14836\",\"height\":\"72\",\"sportsdata_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"team\":\"NYG\",\"cbs_id\":\"2180451\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32918\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15024\",\"draft_team\":\"LAR\",\"birthdate\":\"874645200\",\"name\":\"Sloman, Sam\",\"draft_pick\":\"34\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14837\",\"height\":\"68\",\"twitter_username\":\"ssloman118\",\"sportsdata_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"team\":\"LAR\",\"cbs_id\":\"2240109\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32919\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15025\",\"draft_team\":\"MIN\",\"birthdate\":\"860043600\",\"name\":\"Cole, Brian\",\"draft_pick\":\"35\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14620\",\"height\":\"74\",\"sportsdata_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"team\":\"MIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32921\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"15026\",\"draft_team\":\"SEA\",\"birthdate\":\"849157200\",\"name\":\"Sullivan, Stephen\",\"draft_pick\":\"37\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14570\",\"height\":\"77\",\"twitter_username\":\"SJS_10\",\"sportsdata_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"team\":\"SEA\",\"cbs_id\":\"2223251\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32922\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15027\",\"draft_team\":\"DEN\",\"birthdate\":\"874731600\",\"name\":\"Cleveland, Tyrie\",\"draft_pick\":\"38\",\"college\":\"Florida\",\"rotowire_id\":\"14621\",\"height\":\"74\",\"sportsdata_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"team\":\"DEN\",\"cbs_id\":\"2248604\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32923\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15028\",\"draft_team\":\"DEN\",\"birthdate\":\"837061200\",\"name\":\"Tuszka, Derrek\",\"draft_pick\":\"40\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14731\",\"height\":\"77\",\"sportsdata_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"team\":\"DEN\",\"cbs_id\":\"2190767\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32924\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15029\",\"draft_team\":\"NYG\",\"birthdate\":\"858142800\",\"name\":\"Crowder, Tae\",\"draft_pick\":\"41\",\"college\":\"Georgia\",\"rotowire_id\":\"14839\",\"height\":\"75\",\"twitter_username\":\"TaeCrowder\",\"sportsdata_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"team\":\"NYG\",\"cbs_id\":\"2180461\"},{\"draft_year\":\"2018\",\"birthdate\":\"826174800\",\"draft_team\":\"FA\",\"stats_id\":\"31744\",\"position\":\"LB\",\"name\":\"Gates, DeMarquis\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13942\",\"weight\":\"221\",\"sportsdata_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"id\":\"15030\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32358\",\"position\":\"PN\",\"name\":\"Fox, Jack\",\"college\":\"Rice\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13715\",\"jersey\":\"6\",\"weight\":\"224\",\"sportsdata_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"id\":\"15032\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"746773200\",\"draft_team\":\"FA\",\"stats_id\":\"32664\",\"position\":\"WR\",\"name\":\"Begelton, Reggie\",\"college\":\"Lamar\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14472\",\"weight\":\"200\",\"sportsdata_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"id\":\"15033\",\"team\":\"GBP\",\"cbs_id\":\"3157671\"},{\"draft_year\":\"2020\",\"birthdate\":\"890974800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33109\",\"position\":\"WR\",\"name\":\"Callaway, Marquez\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14556\",\"weight\":\"204\",\"id\":\"15034\",\"team\":\"NOS\",\"cbs_id\":\"2247505\"},{\"draft_year\":\"2018\",\"birthdate\":\"813819600\",\"draft_team\":\"FA\",\"stats_id\":\"31803\",\"position\":\"QB\",\"name\":\"Wolford, John\",\"college\":\"Wake Forest\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13403\",\"jersey\":\"9\",\"weight\":\"200\",\"sportsdata_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"id\":\"15035\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"843541200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33016\",\"position\":\"QB\",\"name\":\"Smith, J'mar\",\"college\":\"Louisiana Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14845\",\"weight\":\"218\",\"sportsdata_id\":\"0c1998f2-7fd2-4191-a05f-1f7f5b5e2ea3\",\"id\":\"15036\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"876114000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32946\",\"position\":\"WR\",\"name\":\"Lipscomb, Kalija\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14640\",\"weight\":\"200\",\"sportsdata_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"id\":\"15037\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"birthdate\":\"850626000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33132\",\"position\":\"WR\",\"name\":\"Bayless, Omar\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14585\",\"weight\":\"207\",\"sportsdata_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"id\":\"15038\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"895726800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33095\",\"position\":\"WR\",\"name\":\"Parker, Aaron\",\"college\":\"Rhode Island\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14642\",\"weight\":\"191\",\"sportsdata_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"id\":\"15039\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Williams, Ty'Son\",\"college\":\"Brigham Young\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14404\",\"weight\":\"220\",\"id\":\"15040\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"872053200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33329\",\"position\":\"WR\",\"name\":\"Cager, Lawrence\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14597\",\"weight\":\"220\",\"sportsdata_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"id\":\"15041\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"birthdate\":\"875595600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33088\",\"position\":\"RB\",\"name\":\"Ward, Jonathan\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"15106\",\"weight\":\"202\",\"sportsdata_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"id\":\"15042\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"838702800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33017\",\"position\":\"WR\",\"name\":\"Hastings, Will\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14762\",\"weight\":\"174\",\"sportsdata_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"id\":\"15043\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33345\",\"position\":\"RB\",\"name\":\"Scarlett, Cameron\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14887\",\"weight\":\"216\",\"sportsdata_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"id\":\"15044\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"birthdate\":\"880002000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32994\",\"position\":\"TE\",\"name\":\"Breeland, Jacob\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14628\",\"weight\":\"250\",\"sportsdata_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"id\":\"15045\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852440400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33242\",\"position\":\"WR\",\"name\":\"Merritt, Kirk\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14861\",\"weight\":\"210\",\"sportsdata_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"id\":\"15046\",\"team\":\"MIA\"},{\"draft_year\":\"2016\",\"birthdate\":\"719730000\",\"draft_team\":\"FA\",\"stats_id\":\"29925\",\"position\":\"CB\",\"name\":\"Roberson, Tre\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"11506\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"id\":\"15047\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33330\",\"position\":\"WR\",\"name\":\"Campbell, George\",\"college\":\"West Virginia\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14944\",\"weight\":\"183\",\"sportsdata_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"id\":\"15048\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33108\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15049\",\"draft_team\":\"FA\",\"birthdate\":\"888469200\",\"name\":\"Bachie, Joe\",\"college\":\"Michigan State\",\"rotowire_id\":\"14735\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"team\":\"NOS\"},{\"draft_year\":\"2020\",\"birthdate\":\"890802000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33096\",\"position\":\"TE\",\"name\":\"Taumoepeau, Charlie\",\"college\":\"Portland State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14633\",\"weight\":\"245\",\"sportsdata_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"id\":\"15050\",\"team\":\"DAL\"}]},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849654, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.139667, namelookup = 0.000123, 
+    connect = 0.000126, pretransfer = 0.000315, starttransfer = 1.382602, 
+    total = 1.545946)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-d4f576.R b/tests/testthat/api.myfantasyleague.com/2020/export-d4f576.R
index 116fbabe..fda04e73 100644
--- a/tests/testthat/api.myfantasyleague.com/2020/export-d4f576.R
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-d4f576.R
@@ -1,24 +1,24 @@
 structure(list(url = "https://www57.myfantasyleague.com/2020/export?TYPE=league&L=37920&JSON=1", 
-    status_code = 200L, headers = structure(list(date = "Sun, 21 Jun 2020 21:08:20 GMT", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:34:19 GMT", 
         server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
         vary = "Accept-Encoding", `content-encoding` = "gzip", 
-        `content-length` = "1381", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+        `content-length` = "1412", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
     "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Sun, 21 Jun 2020 21:08:20 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:19 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             location = "https://www57.myfantasyleague.com/2020/export?TYPE=league&L=37920&JSON=1", 
             `content-length` = "0", targethost = "www70"), class = c("insensitive", 
         "list"))), list(status = 200L, version = "HTTP/1.1", 
-        headers = structure(list(date = "Sun, 21 Jun 2020 21:08:20 GMT", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:34:19 GMT", 
             server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
             vary = "Accept-Encoding", `content-encoding` = "gzip", 
-            `content-length` = "1381", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
+            `content-length` = "1412", `content-type` = "application/json; charset=utf-8"), class = c("insensitive", 
         "list")))), cookies = structure(list(domain = logical(0), 
         flag = logical(0), path = logical(0), secure = logical(0), 
         expiration = structure(numeric(0), class = c("POSIXct", 
         "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
-    content = charToRaw("{\"version\":\"1.0\",\"league\":{\"victoryPointsEndWeek\":\"17\",\"currentWaiverType\":\"BBID_FCFS\",\"playerLimitUnit\":\"LEAGUE\",\"taxiSquad\":\"10\",\"endWeek\":\"17\",\"maxWaiverRounds\":\"4\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"auctionStartAmount\":\"1000\",\"victoryPointsTie\":\"0.5\",\"auction_kind\":\"email\",\"franchises\":{\"count\":\"16\",\"franchise\":[{\"bbidAvailableBalance\":\"100.00\",\"name\":\"@dibari22\",\"id\":\"0001\",\"waiverSortOrder\":\"16\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"@_PeteLaw\",\"id\":\"0002\",\"waiverSortOrder\":\"15\"},{\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2018/37920_franchise_icon0003.png\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Electric Spiders\",\"id\":\"0003\",\"waiverSortOrder\":\"14\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"@MikeEHavens\",\"id\":\"0004\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://www57.myfantasyleague.com/fflnetdynamic2017/37920_franchise_logo0005.jpg\",\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2017/37920_franchise_icon0005.jpg\",\"abbrev\":\"BTP\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Spokane Empire\",\"id\":\"0005\",\"waiverSortOrder\":\"12\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"Tan's Hoes\",\"id\":\"0006\",\"waiverSortOrder\":\"11\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"Deadlifts and Oreos\",\"id\":\"0007\",\"waiverSortOrder\":\"10\"},{\"logo\":\"http://www.dynastyleaguefootball.com/img/logos/angryhosers.jpg\",\"icon\":\"http://www.dynastyleaguefootball.com/img/logos/angryhosers_black.jpg\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"@AdamTz\",\"id\":\"0008\",\"waiverSortOrder\":\"9\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"@RyanCFinley\",\"id\":\"0009\",\"waiverSortOrder\":\"8\"},{\"logo\":\"http://imgix.scout.com/134/1343379.jpg\",\"icon\":\"http://imgix.scout.com/134/1343379.jpg\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"@KOTSFantasy\",\"id\":\"0010\",\"waiverSortOrder\":\"7\"},{\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2018/37920_franchise_icon0011.jpg\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Michael Zingone\",\"id\":\"0011\",\"waiverSortOrder\":\"6\"},{\"abbrev\":\"SoS\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Spawns of Sweetness\",\"id\":\"0012\",\"waiverSortOrder\":\"5\"},{\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2017/37920_franchise_icon0019.jpg\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Advance Reptilian Solar Being (@jnammour24)\",\"id\":\"0013\",\"waiverSortOrder\":\"4\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"@FFPeeblesChamp\",\"id\":\"0014\",\"waiverSortOrder\":\"3\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"@dmeylor22\",\"id\":\"0015\",\"waiverSortOrder\":\"2\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"Adam Wilde\",\"id\":\"0016\",\"waiverSortOrder\":\"1\"}]},\"standingsSort\":\"PCT,PTS,H2H,PWR,VICTORY_POINTS,ALL_PLAY_PCT,\",\"id\":\"37920\",\"minBid\":\"1\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":[{\"url\":\"https://www57.myfantasyleague.com/2020/home/37920\",\"year\":\"2020\"},{\"url\":\"http://www98.myfantasyleague.com/2006/home/71481\",\"year\":\"2006\"},{\"url\":\"http://www98.myfantasyleague.com/2007/home/76273\",\"year\":\"2007\"},{\"url\":\"http://www98.myfantasyleague.com/2008/home/28463\",\"year\":\"2008\"},{\"url\":\"http://www57.myfantasyleague.com/2009/home/42989\",\"year\":\"2009\"},{\"url\":\"http://www58.myfantasyleague.com/2010/home/34479\",\"year\":\"2010\"},{\"url\":\"http://www59.myfantasyleague.com/2011/home/33798\",\"year\":\"2011\"},{\"url\":\"http://www65.myfantasyleague.com/2012/home/42247\",\"year\":\"2012\"},{\"url\":\"http://www66.myfantasyleague.com/2013/home/69182\",\"year\":\"2013\"},{\"url\":\"http://www55.myfantasyleague.com/2014/home/46607\",\"year\":\"2014\"},{\"url\":\"http://www57.myfantasyleague.com/2015/home/47254\",\"year\":\"2015\"},{\"url\":\"http://www57.myfantasyleague.com/2016/home/37920\",\"year\":\"2016\"},{\"url\":\"http://www57.myfantasyleague.com/2017/home/37920\",\"year\":\"2017\"},{\"url\":\"https://www57.myfantasyleague.com/2018/home/37920\",\"year\":\"2018\"},{\"url\":\"https://www57.myfantasyleague.com/2019/home/37920\",\"year\":\"2019\"}]},\"rosterSize\":\"25\",\"name\":\"DLF Dynasty League\",\"bbidSeasonLimit\":\"100\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"\",\"victoryPointsBuckets\":\"2 1 0\",\"starters\":{\"count\":\"9\",\"position\":[{\"name\":\"QB\",\"limit\":\"1\"},{\"name\":\"RB\",\"limit\":\"1-5\"},{\"name\":\"WR\",\"limit\":\"2-6\"},{\"name\":\"TE\",\"limit\":\"1-5\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"17\",\"bestLineup\":\"Yes\",\"precision\":\"2\",\"victoryPointsStartWeek\":\"1\",\"lastRegularSeasonWeek\":\"13\",\"survivorPool\":\"Yes\",\"bbidTiebreaker\":\"SORT\",\"usesContractYear\":\"0\",\"injuredReserve\":\"0\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"victoryPointsLoss\":\"0\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"17\",\"bbidFCFSCharge\":\"\",\"rostersPerPlayer\":\"1\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"victoryPointsWin\":\"1\",\"bbidMinimum\":\"1\",\"baseURL\":\"https://www57.myfantasyleague.com\",\"bidIncrement\":\"1\",\"loadRosters\":\"email_auction\"},\"encoding\":\"utf-8\"}"), 
-    date = structure(1592773700, class = c("POSIXct", "POSIXt"
-    ), tzone = "GMT"), times = c(redirect = 0.140488, namelookup = 0.000212, 
-    connect = 0.000219, pretransfer = 0.000504, starttransfer = 0.299939, 
-    total = 0.300477)), class = "response")
+    content = charToRaw("{\"version\":\"1.0\",\"league\":{\"victoryPointsEndWeek\":\"17\",\"currentWaiverType\":\"BBID\",\"playerLimitUnit\":\"LEAGUE\",\"taxiSquad\":\"10\",\"endWeek\":\"17\",\"maxWaiverRounds\":\"4\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"auctionStartAmount\":\"1000\",\"victoryPointsTie\":\"0.5\",\"auction_kind\":\"email\",\"franchises\":{\"count\":\"16\",\"franchise\":[{\"bbidAvailableBalance\":\"145.00\",\"name\":\"@dibari22\",\"id\":\"0001\",\"waiverSortOrder\":\"16\"},{\"bbidAvailableBalance\":\"100.00\",\"name\":\"@_PeteLaw\",\"id\":\"0002\",\"waiverSortOrder\":\"15\"},{\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2018/37920_franchise_icon0003.png\",\"bbidAvailableBalance\":\"101.00\",\"name\":\"Electric Spiders\",\"id\":\"0003\",\"waiverSortOrder\":\"14\"},{\"bbidAvailableBalance\":\"101.00\",\"name\":\"@MikeEHavens\",\"id\":\"0004\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://www57.myfantasyleague.com/fflnetdynamic2017/37920_franchise_logo0005.jpg\",\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2017/37920_franchise_icon0005.jpg\",\"abbrev\":\"BTP\",\"bbidAvailableBalance\":\"101.00\",\"name\":\"Spokane Empire\",\"id\":\"0005\",\"waiverSortOrder\":\"12\"},{\"bbidAvailableBalance\":\"110.00\",\"name\":\"Tan's Hoes\",\"id\":\"0006\",\"waiverSortOrder\":\"11\"},{\"bbidAvailableBalance\":\"222.00\",\"name\":\"Deadlifts and Oreos\",\"id\":\"0007\",\"waiverSortOrder\":\"10\"},{\"logo\":\"http://www.dynastyleaguefootball.com/img/logos/angryhosers.jpg\",\"icon\":\"http://www.dynastyleaguefootball.com/img/logos/angryhosers_black.jpg\",\"bbidAvailableBalance\":\"110.00\",\"name\":\"@AdamTz\",\"id\":\"0008\",\"waiverSortOrder\":\"9\"},{\"bbidAvailableBalance\":\"101.00\",\"name\":\"@RyanCFinley\",\"id\":\"0009\",\"waiverSortOrder\":\"8\"},{\"logo\":\"http://imgix.scout.com/134/1343379.jpg\",\"icon\":\"http://imgix.scout.com/134/1343379.jpg\",\"bbidAvailableBalance\":\"109.00\",\"name\":\"@KOTSFantasy\",\"id\":\"0010\",\"waiverSortOrder\":\"7\"},{\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2018/37920_franchise_icon0011.jpg\",\"bbidAvailableBalance\":\"103.00\",\"name\":\"Michael Zingone\",\"id\":\"0011\",\"waiverSortOrder\":\"6\"},{\"abbrev\":\"SoS\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Spawns of Sweetness\",\"id\":\"0012\",\"waiverSortOrder\":\"5\"},{\"icon\":\"https://www57.myfantasyleague.com/fflnetdynamic2017/37920_franchise_icon0019.jpg\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Advance Reptilian Solar Being (@jnammour24)\",\"id\":\"0013\",\"waiverSortOrder\":\"4\"},{\"bbidAvailableBalance\":\"101.00\",\"name\":\"@FFPeeblesChamp\",\"id\":\"0014\",\"waiverSortOrder\":\"3\"},{\"bbidAvailableBalance\":\"102.00\",\"name\":\"@dmeylor22\",\"id\":\"0015\",\"waiverSortOrder\":\"2\"},{\"bbidAvailableBalance\":\"103.00\",\"name\":\"Adam Wilde\",\"id\":\"0016\",\"waiverSortOrder\":\"1\"}]},\"standingsSort\":\"PCT,PTS,H2H,PWR,VICTORY_POINTS,ALL_PLAY_PCT,\",\"id\":\"37920\",\"minBid\":\"1\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":[{\"url\":\"https://www57.myfantasyleague.com/2020/home/37920\",\"year\":\"2020\"},{\"url\":\"http://www98.myfantasyleague.com/2006/home/71481\",\"year\":\"2006\"},{\"url\":\"http://www98.myfantasyleague.com/2007/home/76273\",\"year\":\"2007\"},{\"url\":\"http://www98.myfantasyleague.com/2008/home/28463\",\"year\":\"2008\"},{\"url\":\"http://www57.myfantasyleague.com/2009/home/42989\",\"year\":\"2009\"},{\"url\":\"http://www58.myfantasyleague.com/2010/home/34479\",\"year\":\"2010\"},{\"url\":\"http://www59.myfantasyleague.com/2011/home/33798\",\"year\":\"2011\"},{\"url\":\"http://www65.myfantasyleague.com/2012/home/42247\",\"year\":\"2012\"},{\"url\":\"http://www66.myfantasyleague.com/2013/home/69182\",\"year\":\"2013\"},{\"url\":\"http://www55.myfantasyleague.com/2014/home/46607\",\"year\":\"2014\"},{\"url\":\"http://www57.myfantasyleague.com/2015/home/47254\",\"year\":\"2015\"},{\"url\":\"http://www57.myfantasyleague.com/2016/home/37920\",\"year\":\"2016\"},{\"url\":\"http://www57.myfantasyleague.com/2017/home/37920\",\"year\":\"2017\"},{\"url\":\"https://www57.myfantasyleague.com/2018/home/37920\",\"year\":\"2018\"},{\"url\":\"https://www57.myfantasyleague.com/2019/home/37920\",\"year\":\"2019\"}]},\"rosterSize\":\"15\",\"name\":\"DLF Dynasty League\",\"bbidSeasonLimit\":\"100\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"\",\"victoryPointsBuckets\":\"2 1 0\",\"starters\":{\"count\":\"9\",\"position\":[{\"name\":\"QB\",\"limit\":\"1\"},{\"name\":\"RB\",\"limit\":\"1-5\"},{\"name\":\"WR\",\"limit\":\"2-6\"},{\"name\":\"TE\",\"limit\":\"1-5\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"17\",\"bestLineup\":\"Yes\",\"precision\":\"2\",\"victoryPointsStartWeek\":\"1\",\"lastRegularSeasonWeek\":\"13\",\"survivorPool\":\"Yes\",\"bbidTiebreaker\":\"SORT\",\"usesContractYear\":\"0\",\"injuredReserve\":\"0\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"victoryPointsLoss\":\"0\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"17\",\"bbidFCFSCharge\":\"\",\"rostersPerPlayer\":\"1\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"victoryPointsWin\":\"1\",\"bbidMinimum\":\"1\",\"baseURL\":\"https://www57.myfantasyleague.com\",\"bidIncrement\":\"1\",\"loadRosters\":\"email_auction\"},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849659, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.243215, namelookup = 0.000566, 
+    connect = 0.031495, pretransfer = 0.105673, starttransfer = 0.404437, 
+    total = 0.404574)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-e54ca1.R b/tests/testthat/api.myfantasyleague.com/2020/export-e54ca1.R
new file mode 100644
index 00000000..733efde5
--- /dev/null
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-e54ca1.R
@@ -0,0 +1,25 @@
+structure(list(url = "https://www73.myfantasyleague.com/2020/export?TYPE=players&L=65443&DETAILS=1&JSON=1", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:29:08 GMT", 
+        server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+        vary = "Accept-Encoding", `content-encoding` = "gzip", 
+        `content-type` = "application/json; charset=utf-8", `transfer-encoding` = "chunked"), class = c("insensitive", 
+    "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:08 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            location = "https://www73.myfantasyleague.com/2020/export?TYPE=players&L=65443&DETAILS=1&JSON=1", 
+            `content-length` = "0", targethost = "www70"), class = c("insensitive", 
+        "list"))), list(status = 200L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:08 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            vary = "Accept-Encoding", `content-encoding` = "gzip", 
+            `content-type` = "application/json; charset=utf-8", 
+            `transfer-encoding` = "chunked"), class = c("insensitive", 
+        "list")))), cookies = structure(list(domain = logical(0), 
+        flag = logical(0), path = logical(0), secure = logical(0), 
+        expiration = structure(numeric(0), class = c("POSIXct", 
+        "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
+    content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"-1\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"stats_id\":\"2\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"twitter_username\":\"buffalobills\",\"id\":\"0501\",\"team\":\"BUF\",\"cbs_id\":\"409\",\"fleaflicker_id\":\"2331\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"stats_id\":\"11\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"twitter_username\":\"nflcolts\",\"id\":\"0502\",\"team\":\"IND\",\"cbs_id\":\"402\",\"fleaflicker_id\":\"2341\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"stats_id\":\"15\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"twitter_username\":\"MiamiDolphins\",\"id\":\"0503\",\"team\":\"MIA\",\"cbs_id\":\"404\",\"fleaflicker_id\":\"2344\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"stats_id\":\"17\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"twitter_username\":\"patriots\",\"id\":\"0504\",\"team\":\"NEP\",\"cbs_id\":\"406\",\"fleaflicker_id\":\"2346\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"stats_id\":\"20\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"nyjets\",\"id\":\"0505\",\"team\":\"NYJ\",\"cbs_id\":\"410\",\"fleaflicker_id\":\"2349\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"stats_id\":\"4\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"twitter_username\":\"Bengals\",\"id\":\"0506\",\"team\":\"CIN\",\"cbs_id\":\"426\",\"fleaflicker_id\":\"2334\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"stats_id\":\"5\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"twitter_username\":\"OfficialBrowns\",\"id\":\"0507\",\"team\":\"CLE\",\"cbs_id\":\"419\",\"fleaflicker_id\":\"2335\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"stats_id\":\"10\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"twitter_username\":\"tennesseetitans\",\"id\":\"0508\",\"team\":\"TEN\",\"cbs_id\":\"431\",\"fleaflicker_id\":\"2358\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"stats_id\":\"30\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"twitter_username\":\"jaguarsinsider\",\"id\":\"0509\",\"team\":\"JAC\",\"cbs_id\":\"422\",\"fleaflicker_id\":\"2342\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"stats_id\":\"23\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"twitter_username\":\"steelers\",\"id\":\"0510\",\"team\":\"PIT\",\"cbs_id\":\"413\",\"fleaflicker_id\":\"2352\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"stats_id\":\"7\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"twitter_username\":\"DenverBroncos\",\"id\":\"0511\",\"team\":\"DEN\",\"cbs_id\":\"428\",\"fleaflicker_id\":\"2337\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"stats_id\":\"12\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"twitter_username\":\"kcchiefs\",\"id\":\"0512\",\"team\":\"KCC\",\"cbs_id\":\"403\",\"fleaflicker_id\":\"2343\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"stats_id\":\"13\",\"position\":\"Def\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"twitter_username\":\"raiders\",\"id\":\"0513\",\"team\":\"LVR\",\"cbs_id\":\"424\",\"fleaflicker_id\":\"2350\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"stats_id\":\"24\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"chargers\",\"id\":\"0514\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"stats_id\":\"26\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"twitter_username\":\"seahawks\",\"id\":\"0515\",\"team\":\"SEA\",\"cbs_id\":\"416\",\"fleaflicker_id\":\"2354\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"stats_id\":\"6\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"twitter_username\":\"dallascowboys\",\"id\":\"0516\",\"team\":\"DAL\",\"cbs_id\":\"427\",\"fleaflicker_id\":\"2336\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"stats_id\":\"19\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"giants\",\"id\":\"0517\",\"team\":\"NYG\",\"cbs_id\":\"408\",\"fleaflicker_id\":\"2348\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"stats_id\":\"21\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"twitter_username\":\"Eagles\",\"id\":\"0518\",\"team\":\"PHI\",\"cbs_id\":\"411\",\"fleaflicker_id\":\"2351\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"stats_id\":\"22\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"twitter_username\":\"AZCardinals\",\"id\":\"0519\",\"team\":\"ARI\",\"cbs_id\":\"412\",\"fleaflicker_id\":\"2328\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"stats_id\":\"28\",\"position\":\"Def\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"twitter_username\":\"Redskins\",\"id\":\"0520\",\"team\":\"WAS\",\"cbs_id\":\"418\",\"fleaflicker_id\":\"2359\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"stats_id\":\"3\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"twitter_username\":\"ChicagoBears\",\"id\":\"0521\",\"team\":\"CHI\",\"cbs_id\":\"421\",\"fleaflicker_id\":\"2333\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"stats_id\":\"8\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"twitter_username\":\"detroitlionsnfl\",\"id\":\"0522\",\"team\":\"DET\",\"cbs_id\":\"429\",\"fleaflicker_id\":\"2338\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"stats_id\":\"9\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"packers\",\"id\":\"0523\",\"team\":\"GBP\",\"cbs_id\":\"430\",\"fleaflicker_id\":\"2339\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"stats_id\":\"16\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"twitter_username\":\"Vikings\",\"id\":\"0524\",\"team\":\"MIN\",\"cbs_id\":\"405\",\"fleaflicker_id\":\"2345\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"stats_id\":\"27\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"TBBuccaneers\",\"id\":\"0525\",\"team\":\"TBB\",\"cbs_id\":\"417\",\"fleaflicker_id\":\"2357\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"stats_id\":\"1\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"twitter_username\":\"AtlantaFalcons\",\"id\":\"0526\",\"team\":\"ATL\",\"cbs_id\":\"401\",\"fleaflicker_id\":\"2329\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"stats_id\":\"29\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"twitter_username\":\"Panthers\",\"id\":\"0527\",\"team\":\"CAR\",\"cbs_id\":\"420\",\"fleaflicker_id\":\"2332\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"stats_id\":\"14\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"STLouisRams\",\"id\":\"0528\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"stats_id\":\"18\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"twitter_username\":\"saints\",\"id\":\"0529\",\"team\":\"NOS\",\"cbs_id\":\"407\",\"fleaflicker_id\":\"2347\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"stats_id\":\"25\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"twitter_username\":\"49ers\",\"id\":\"0530\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"stats_id\":\"33\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"twitter_username\":\"ravens\",\"id\":\"0531\",\"team\":\"BAL\",\"cbs_id\":\"425\",\"fleaflicker_id\":\"2330\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"stats_id\":\"34\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"twitter_username\":\"houstontexans\",\"id\":\"0532\",\"team\":\"HOU\",\"cbs_id\":\"432\",\"fleaflicker_id\":\"2340\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1994\",\"draft_team\":\"NYJ\",\"stats_id\":\"39685\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"twitter_username\":\"PeteCarroll\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"birthdate\":\"94366800\",\"draft_team\":\"FA\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"rotowire_id\":\"395\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"aVinatieri4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"team\":\"FA\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"IND\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"TBB\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"FA\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"FA\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"FA\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"LVR\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"FA\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"IND\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"FA\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"WAS\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"20\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"NYJ\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"2\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"FA\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"FA\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"FA\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"24\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"TEN\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"FA\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"FA\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"FA\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"FA\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"twitter_username\":\"CoachTomlin\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"26\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"WAS\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"FA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"CHI\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"SEA\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"FA\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"FA\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"fleaflicker_id\":\"4848\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"FA\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"2\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"FA\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"KCC\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"CB\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"FA\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"BAL\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"NYJ\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"FA\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"fleaflicker_id\":\"5372\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"FA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"FA\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"BUF\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"FA\",\"cbs_id\":\"519042\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"FA\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"NOS\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"FA\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"FA\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"FA\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"4\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"FA\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"9\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"CAR\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"DET\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"NEP\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"FA\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"CAR\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"DAL\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"FA\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"CIN\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"FA\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"BAL\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"FA\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"FA\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"NYG\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"TBB\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"98\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"LAC\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"FA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"FA\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"10\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"NOS\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"8\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"CHI\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DE\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"72\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"JAC\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"FA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"FA*\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"fleaflicker_id\":\"6799\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"FA\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"FA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"FA\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"FA\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"FA\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"NYJ\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"FA\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"42\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"CLE\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"FA\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"twitter_username\":\"RiverboatRonHC\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"99\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"CLE\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"LVR\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"FA\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"LB\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"58\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"CHI\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"NEP\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"aldonsmith/2495487\",\"rotoworld_id\":\"6477\",\"stats_id\":\"24794\",\"position\":\"DE\",\"stats_global_id\":\"463434\",\"espn_id\":\"13988\",\"weight\":\"265\",\"id\":\"10274\",\"birthdate\":\"628405200\",\"draft_team\":\"SFO\",\"name\":\"Smith, Aldon\",\"draft_pick\":\"7\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7446\",\"jersey\":\"99\",\"twitter_username\":\"AldonSmith\",\"sportsdata_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"team\":\"DAL\",\"cbs_id\":\"1630791\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"99\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"DE\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"FA\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"HOU\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"DAL\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"FA\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"FA\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"FA\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"FA\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"DEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"FA\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"80\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"FA\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"34\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"BUF\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"FA\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"NYG\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"FA\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"FA\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"FA\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"FA\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"51\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"FA\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"DAL\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"FA\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"BUF\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"LAC\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"CIN\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"7\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"CHI\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"FA\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"FA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"NEP\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"FA\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"12\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"SFO\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"fleaflicker_id\":\"8577\",\"birthdate\":\"609570000\",\"draft_team\":\"SDC\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"FA\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"DAL\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"55\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"SEA\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"FA\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"FA\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"27\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"FA\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"26\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"FA\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"fleaflicker_id\":\"8472\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"BAL\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"FA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"32\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"FA\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"FA\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"FA\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"LVR\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"FA\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"FA\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"96\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"FA\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"59\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"CAR\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"FA\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"24\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"BUF\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DE\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"95\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"TEN\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"4\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"DAL\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"FA\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"28\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NYG\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"NYG\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"LVR\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"8\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"CLE\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"FA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"10\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"FA\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"FA\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"FA\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"39\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"CHI\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"FA\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"twitter_username\":\"BruceArians\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"TEN\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"fleaflicker_id\":\"9009\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"FA\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"BUF\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"FA\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"NYJ\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"7\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"JAC\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"FA\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"25\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"JAC\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"FA\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"NYJ\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"FA\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"10\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"FA\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"10\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"ARI\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"FA\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"11\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"PHI\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"86\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"FA\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"85\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"JAC\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"83\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"NYG\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"97\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"FA\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"FA\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"NOS\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DE\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"LVR\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"FA\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"FA\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"77\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"CHI\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"FA\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"FA\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"51\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"CHI\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"47\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"NOS\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"21\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"DET\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"29\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"IND\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"26\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"FA\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"8\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"SFO\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"FA\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"FA\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"FA\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"23\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"PHI\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"8\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"DET\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"FA\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"21\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"DET\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"FA\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"53\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"BUF\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"SEA\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"SEA\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DEN\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"85\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DT\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"FA\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"DET\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"S\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"FA\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"88\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CHI\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"FA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"FA\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"ATL\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"FA\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"SEA\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"FA\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"ATL\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"23\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"PHI\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"FA\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"DEN\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"FA\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"FA\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"NYJ\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"0\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"JAC\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"LVR\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"NEP\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"FA\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"HOU\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"FA\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"HOU\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"CAR\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"FA\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"LVR\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"WAS\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"34\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"SEA\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"5\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"FA*\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"FA\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"11\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"NEP\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"12\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"HOU\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"FA\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"FA\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"FA\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"PIT\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"IND\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"IND\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"FA*\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"JAC\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"93\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"HOU\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"PIT\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"PIT\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"MIA\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"51\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"21\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"FA\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"WAS\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"DAL\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"CB\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"LVR\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"WAS\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"2\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"ATL\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"S\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"GBP\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"FA\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"FA\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"28\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"82\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"WAS\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"HOU\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"78\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"LB\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"91\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"JAC\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"FA\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"FA\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DT\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"FA\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"NYJ\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"CB\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"57\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"WAS\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"LVR\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"96\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"FA\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"NYJ\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"CAR\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"ARI\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"NYJ\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"NYJ\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"CLE\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, T.J.\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"IND\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"91\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"NEP\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DE\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"FA\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"FA\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"FA\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"5\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"FA\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"16\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"FA\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chandlercatanzaro/2550325\",\"rotoworld_id\":\"10045\",\"stats_id\":\"28103\",\"position\":\"PK\",\"stats_global_id\":\"522233\",\"espn_id\":\"16976\",\"weight\":\"200\",\"id\":\"11960\",\"draft_team\":\"FA\",\"birthdate\":\"667544400\",\"name\":\"Catanzaro, Chandler\",\"college\":\"Clemson\",\"rotowire_id\":\"9845\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"team\":\"NYG\",\"cbs_id\":\"2130276\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"TEN\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"FA\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"FA\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DT\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"CAR\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"FA\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"FA\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"0\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"DEN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"NEP\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"FA\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"FA\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"FA\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"3\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"NOS\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"LVR\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"ATL\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"DEN\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"29\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"27\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"FA\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"HOU\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"FA\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"13\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"LVR\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"DAL\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"FA\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"BUF\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"13\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"SEA\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"NYJ\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"17\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"GBP\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"83\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"FA\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"DEN\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"FA\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"FA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"DAL\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"DE\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"ATL\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"NOS\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"DE\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"WAS\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"92\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"DET\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"FA\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DE\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"ARI\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"LB\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"TEN\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"FA\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"SFO\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, A.J.\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"FA\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"FA\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"22\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"CIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"CLE\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"ATL\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NOS\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"LVR\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"31\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"MIA\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"LVR\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"S\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"21\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"WAS\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"NYG\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"97\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"HOU\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"FA\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"TEN\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DT\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"JAC\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"NOS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"FA\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"DET\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"28\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"NOS\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DE\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"95\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"DEN\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"FA\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10605\",\"stats_id\":\"28620\",\"position\":\"LB\",\"stats_global_id\":\"845648\",\"espn_id\":\"3137087\",\"weight\":\"245\",\"id\":\"12369\",\"birthdate\":\"698821200\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Edmond\",\"draft_pick\":\"15\",\"college\":\"Newberry\",\"rotowire_id\":\"10497\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"AAP_30\",\"sportsdata_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"team\":\"ATL\",\"cbs_id\":\"2174218\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"FA\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"27\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"DET\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"FA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"FA\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"LVR\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"HOU\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"FA\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"CAR\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"GBP\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"LVR\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"SEA\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"NEP\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"CAR\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"ATL\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"51\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NEP\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"TEN\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"LAC\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"0\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"PIT\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"FA\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"FA\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"6\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DEN\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"FA\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"FA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"LVR\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"NYJ\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"MIA\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"FA\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"FA\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"WAS\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"WAS\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"ATL\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"NYG\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"NYJ\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"81\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"MIN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"12\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"CAR\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"DET\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"FA\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"CIN\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"CLE\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"DEN\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"MIA\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"IND\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"DE\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"MIA\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"MIN\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"LAR\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CLE\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"NYG\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"DET\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"FA\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"FA\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"CIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"WAS\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"CAR\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"S\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"CLE\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"CIN\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"27\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"DET\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"LAR\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"CHI\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"BUF\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"TEN\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DE\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"51\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"WAS\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"FA\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"NYG\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"FA\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"LVR\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"LVR\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"S\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"JAC\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"NYJ\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"ARI\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"DAL\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"LAC\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"NYG\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"79\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PHI\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"53\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"JAC\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"96\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"IND\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"HOU\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"CLE\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"LVR\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ARI\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"64\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"S\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CAR\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"CB\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"TBB\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"SFO\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"NYG\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"FA\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"99\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"BUF\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DT\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"36\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"CIN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"CHI\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"CIN\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"FA\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"SDC\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"PHI\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"CLE\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"CHI\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"FA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"FA\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"draft_team\":\"TBB\",\"birthdate\":\"751611600\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"NEP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"34\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"PIT\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"16\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"CHI\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"MIA\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"DAL\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"MIA\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"52\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"MIA\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"IND\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"34\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"PHI\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"BUF\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"CAR\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"MIA\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"BUF\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"SFO\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"KCC\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"FA\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"FA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"DAL\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"LVR\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"LVR\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"FA\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"NOS\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"FA\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"CAR\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"FA\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"CHI\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"93\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"DEN\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"MIN\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"LVR\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"FA\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"FA\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"KCC\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LVR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"SFO\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"FA\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"FA\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"NYJ\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"IND\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"FA\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"NYG\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"FA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"FA\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"WAS\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"FA\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"JAC\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"BUF\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"IND\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"NYG\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"LVR\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"JAC\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"CIN\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"FA\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"FA\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"FA\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"KCC\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"TBB\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"IND\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"MIA\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"PIT\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"PIT\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"NYJ\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"FA\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"LVR\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"KCC\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"HOU\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"TBB\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"MIA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"KCC\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"90\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"ATL\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"ATL\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"FA\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"75\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"NYJ\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DT\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DT\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"93\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"PIT\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"GBP\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"TBB\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"MIA\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"PHI\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"SEA\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"LAC\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"NYJ\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"PHI\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"FA\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"FA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"87\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"MIA\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"NYJ\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"FA\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"JAC\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"NEP\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"MIA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"IND\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"PHI\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"FA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"FA\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"MIN\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"FA\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"CIN\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"CB\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"S\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"NYJ\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"WR\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"FA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"LVR\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"48\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"CHI\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DE\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"FA\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"BUF\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DE\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"HOU\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"MIA\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"DET\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DE\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"GBP\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"NOS\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"DET\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"MIA\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"KCC\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"RB\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"NOS\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"FA\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"FA\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"CLE\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"PIT\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"MIN\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"FA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, P.J.\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"CAR\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"LVR\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DE\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"ARI\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"FA\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"FA\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"ATL\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"FA\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"CLE\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"FA\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"FA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"NYJ\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"NYJ\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"S\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"45\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"GBP\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"FA\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"DET\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"14\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"BUF\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"CLE\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"CHI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"LB\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"TEN\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"MIA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"PIT\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"NYJ\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"PHI\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"WAS\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"DET\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"LAR\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"MIA\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"SFO\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"FA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"BUF\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"LVR\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"BUF\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"WAS\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"CLE\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"BAL\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"WAS\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"FA\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"757573200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"ATL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"LVR\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"LVR\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"36\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"JAC\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"LVR\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"97\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"KCC\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"TBB\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"LVR\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"CLE\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"47\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"CB\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"NYG\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"DEN\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"LVR\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"CB\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SFO\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"37\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"DEN\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"CIN\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"CLE\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"DET\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"JAC\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"LB\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"CB\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"34\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"WAS\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"TE\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"ARI\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"FA\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DT\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"FA\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"49\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"NYJ\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"HOU\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"FA\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"ATL\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"HOU\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"SFO\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"CAR\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"birthdate\":\"698907600\",\"draft_team\":\"FA\",\"stats_id\":\"30711\",\"position\":\"PN\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"11829\",\"weight\":\"194\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"id\":\"13848\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"FA\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"6\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"ATL\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"FA\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"BUF\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"JAC\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"WAS\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"CAR\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"BUF\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"TEN\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"FA\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"NYJ\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"CIN\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"PHI\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13507\",\"stats_id\":\"31314\",\"position\":\"CB\",\"stats_global_id\":\"822378\",\"weight\":\"189\",\"id\":\"13928\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Nichols, Deatrick\",\"college\":\"South Florida\",\"rotowire_id\":\"12758\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"team\":\"NOS\",\"cbs_id\":\"2926507\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"KCC\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"MIA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"NOS\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"CHI\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"NYG\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"FA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"TEN\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"MIA\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DE\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"CLE\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"NYG\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"BUF\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"DET\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"DAL\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"LVR\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"GBP\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"FA\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"HOU\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"40\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"23\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"CIN\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"NYJ\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"CAR\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"38\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"DET\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"GBP\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"FA\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"ARI\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"FA\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"CIN\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"FA\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"NOS\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"PIT\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"MIA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"89\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"LVR\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"MIN\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"birthdate\":\"873608400\",\"draft_team\":\"FA\",\"stats_id\":\"32469\",\"position\":\"WR\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"stats_global_id\":\"866112\",\"height\":\"72\",\"rotowire_id\":\"13877\",\"jersey\":\"8\",\"weight\":\"205\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"id\":\"14131\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"FA\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"ARI\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"FA\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"WAS\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"stats_id\":\"31858\",\"position\":\"DE\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"LVR\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"DAL\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"97\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"PHI\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"stats_id\":\"31835\",\"position\":\"DE\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"stats_id\":\"31903\",\"position\":\"DE\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"GBP\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"BAL\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"FA\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"TEN\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"NYG\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"stats_id\":\"31940\",\"position\":\"S\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"LVR\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"LVR\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"draft_team\":\"FA\",\"stats_id\":\"32368\",\"position\":\"RB\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"stats_global_id\":\"868331\",\"height\":\"72\",\"rotowire_id\":\"13549\",\"jersey\":\"30\",\"weight\":\"205\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"id\":\"14192\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"birthdate\":\"674283600\",\"draft_team\":\"FA\",\"stats_id\":\"31822\",\"position\":\"RB\",\"name\":\"Wade, Christian\",\"stats_global_id\":\"1164428\",\"height\":\"67\",\"rotowire_id\":\"13930\",\"jersey\":\"45\",\"weight\":\"185\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"id\":\"14194\",\"team\":\"BUF\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"draft_team\":\"GBP\",\"draft_pick\":\"21\",\"position\":\"S\",\"name\":\"Savage, Darnell\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13810\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"id\":\"14197\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"13514\",\"height\":\"75\",\"jersey\":\"79\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"LVR\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"LVR\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"LVR\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"NYG\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"TBB\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"BUF\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"DEN\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"DET\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"stats_id\":\"31991\",\"position\":\"DT\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"2\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CLE\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"FA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"NOS\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYG\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"DET\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"DEN\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"CHI\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"IND\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"FA\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"PIT\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"SEA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"JAC\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"stats_id\":\"32074\",\"position\":\"DT\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"MIA\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"TBB\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"NOS\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"IND\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"1\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"LVR\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"SEA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"PIT\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"FA\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"FA\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"DET\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"birthdate\":\"787208400\",\"draft_team\":\"FA\",\"stats_id\":\"31831\",\"position\":\"PK\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"stats_global_id\":\"744596\",\"height\":\"72\",\"rotowire_id\":\"13943\",\"weight\":\"189\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"id\":\"14335\",\"team\":\"TBB\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"DAL\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"birthdate\":\"816325200\",\"draft_team\":\"FA\",\"stats_id\":\"32238\",\"position\":\"RB\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"stats_global_id\":\"836057\",\"height\":\"72\",\"rotowire_id\":\"14082\",\"jersey\":\"23\",\"weight\":\"226\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"id\":\"14338\",\"team\":\"NYG\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"birthdate\":\"755067600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"12121\",\"jersey\":\"13\",\"weight\":\"178\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"id\":\"14339\",\"team\":\"TBB\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"draft_team\":\"FA\",\"stats_id\":\"32456\",\"position\":\"TE\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"stats_global_id\":\"875649\",\"height\":\"80\",\"rotowire_id\":\"13602\",\"jersey\":\"46\",\"weight\":\"240\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"id\":\"14341\",\"team\":\"LAC\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"draft_team\":\"FA\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"CIN\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"CAR\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"birthdate\":\"789022800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"stats_global_id\":\"744162\",\"height\":\"72\",\"rotowire_id\":\"12734\",\"jersey\":\"46\",\"weight\":\"230\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"id\":\"14350\",\"team\":\"DAL\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"MIN\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"birthdate\":\"770101200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"stats_global_id\":\"746191\",\"height\":\"74\",\"rotowire_id\":\"12539\",\"jersey\":\"15\",\"weight\":\"200\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"id\":\"14365\",\"team\":\"LAC\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"82\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"CIN\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"birthdate\":\"822459600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"stats_global_id\":\"832993\",\"height\":\"76\",\"rotowire_id\":\"13237\",\"jersey\":\"76\",\"weight\":\"295\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"id\":\"14377\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32220\",\"position\":\"LB\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"stats_global_id\":\"821593\",\"height\":\"74\",\"rotowire_id\":\"13907\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"id\":\"14384\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"stats_global_id\":\"699216\",\"height\":\"70\",\"rotowire_id\":\"11374\",\"jersey\":\"42\",\"weight\":\"200\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"id\":\"14394\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"birthdate\":\"818917200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820730\",\"height\":\"73\",\"rotowire_id\":\"13342\",\"jersey\":\"38\",\"weight\":\"210\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"id\":\"14398\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"FA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"LVR\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"birthdate\":\"811314000\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"stats_global_id\":\"820764\",\"height\":\"74\",\"rotowire_id\":\"13187\",\"jersey\":\"45\",\"weight\":\"255\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"id\":\"14421\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"birthdate\":\"841294800\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"stats_global_id\":\"837722\",\"height\":\"71\",\"rotowire_id\":\"12827\",\"jersey\":\"39\",\"weight\":\"200\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"id\":\"14434\",\"team\":\"WAS\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"college\":\"Louisville\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"JAC\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"FA\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"786690000\",\"draft_team\":\"FA\",\"stats_id\":\"32559\",\"position\":\"RB\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"stats_global_id\":\"835777\",\"height\":\"69\",\"rotowire_id\":\"14237\",\"jersey\":\"46\",\"weight\":\"179\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"id\":\"14465\",\"team\":\"MIN\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"birthdate\":\"840862800\",\"draft_team\":\"FA\",\"stats_id\":\"32556\",\"position\":\"WR\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"stats_global_id\":\"838301\",\"height\":\"75\",\"rotowire_id\":\"14236\",\"jersey\":\"81\",\"weight\":\"205\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"id\":\"14481\",\"team\":\"DAL\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"birthdate\":\"848206800\",\"draft_team\":\"FA\",\"stats_id\":\"32283\",\"position\":\"WR\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"stats_global_id\":\"1063397\",\"height\":\"73\",\"rotowire_id\":\"14129\",\"jersey\":\"83\",\"weight\":\"201\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"id\":\"14486\",\"team\":\"CLE\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"birthdate\":\"850366800\",\"draft_team\":\"FA\",\"stats_id\":\"32273\",\"position\":\"TE\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"stats_global_id\":\"881697\",\"height\":\"76\",\"rotowire_id\":\"14131\",\"jersey\":\"89\",\"weight\":\"240\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"id\":\"14488\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"birthdate\":\"867992400\",\"draft_team\":\"FA\",\"stats_id\":\"32277\",\"position\":\"PN\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"stats_global_id\":\"891880\",\"height\":\"73\",\"rotowire_id\":\"14147\",\"jersey\":\"7\",\"weight\":\"207\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"id\":\"14489\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"809586000\",\"draft_team\":\"FA\",\"stats_id\":\"32205\",\"position\":\"LB\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"stats_global_id\":\"821248\",\"height\":\"75\",\"rotowire_id\":\"14068\",\"jersey\":\"57\",\"weight\":\"245\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"id\":\"14495\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"birthdate\":\"853390800\",\"draft_team\":\"FA\",\"stats_id\":\"32189\",\"position\":\"WR\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"stats_global_id\":\"1165782\",\"height\":\"72\",\"rotowire_id\":\"13919\",\"jersey\":\"2\",\"weight\":\"180\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"id\":\"14499\",\"team\":\"DEN\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"819262800\",\"draft_team\":\"FA\",\"stats_id\":\"32266\",\"position\":\"LB\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820700\",\"height\":\"72\",\"rotowire_id\":\"14103\",\"jersey\":\"40\",\"weight\":\"228\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"id\":\"14509\",\"team\":\"GBP\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"birthdate\":\"813992400\",\"draft_team\":\"FA\",\"stats_id\":\"32152\",\"position\":\"QB\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"stats_global_id\":\"945086\",\"height\":\"76\",\"rotowire_id\":\"14040\",\"jersey\":\"3\",\"weight\":\"221\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"id\":\"14510\",\"team\":\"FA\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2019\",\"birthdate\":\"900738000\",\"draft_team\":\"FA\",\"stats_id\":\"32623\",\"position\":\"S\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"stats_global_id\":\"910649\",\"height\":\"72\",\"rotowire_id\":\"14330\",\"jersey\":\"38\",\"weight\":\"195\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"id\":\"14518\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"birthdate\":\"845355600\",\"draft_team\":\"FA\",\"stats_id\":\"32151\",\"position\":\"LB\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"stats_global_id\":\"923359\",\"height\":\"75\",\"rotowire_id\":\"14257\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"id\":\"14519\",\"team\":\"CAR\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"birthdate\":\"867387600\",\"draft_team\":\"FA\",\"stats_id\":\"32509\",\"position\":\"DT\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"stats_global_id\":\"867748\",\"height\":\"75\",\"rotowire_id\":\"13864\",\"jersey\":\"67\",\"weight\":\"305\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"id\":\"14531\",\"team\":\"FA\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"birthdate\":\"803883600\",\"draft_team\":\"FA\",\"stats_id\":\"32547\",\"position\":\"WR\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"stats_global_id\":\"1166990\",\"height\":\"74\",\"rotowire_id\":\"13999\",\"jersey\":\"89\",\"weight\":\"213\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"id\":\"14545\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"birthdate\":\"822718800\",\"draft_team\":\"FA\",\"stats_id\":\"32137\",\"position\":\"WR\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"stats_global_id\":\"828656\",\"height\":\"70\",\"rotowire_id\":\"14012\",\"jersey\":\"14\",\"weight\":\"180\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"id\":\"14549\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"birthdate\":\"836197200\",\"draft_team\":\"FA\",\"stats_id\":\"32140\",\"position\":\"RB\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"835845\",\"height\":\"72\",\"rotowire_id\":\"13998\",\"jersey\":\"48\",\"weight\":\"233\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"id\":\"14552\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"birthdate\":\"848811600\",\"draft_team\":\"FA\",\"stats_id\":\"32143\",\"position\":\"WR\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"stats_global_id\":\"1050926\",\"height\":\"73\",\"rotowire_id\":\"14049\",\"jersey\":\"85\",\"weight\":\"166\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"id\":\"14554\",\"team\":\"MIN\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"birthdate\":\"848984400\",\"draft_team\":\"FA\",\"stats_id\":\"32612\",\"position\":\"WR\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"stats_global_id\":\"1168410\",\"height\":\"72\",\"rotowire_id\":\"14318\",\"jersey\":\"9\",\"weight\":\"190\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"id\":\"14555\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"birthdate\":\"881211600\",\"draft_team\":\"FA\",\"stats_id\":\"32398\",\"position\":\"WR\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"stats_global_id\":\"1166545\",\"height\":\"66\",\"rotowire_id\":\"14191\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"id\":\"14558\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"birthdate\":\"855378000\",\"draft_team\":\"FA\",\"stats_id\":\"32492\",\"position\":\"LB\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"stats_global_id\":\"880029\",\"height\":\"77\",\"rotowire_id\":\"13859\",\"jersey\":\"58\",\"weight\":\"260\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"id\":\"14559\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"stats_id\":\"32243\",\"position\":\"WR\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"stats_global_id\":\"838670\",\"height\":\"72\",\"rotowire_id\":\"13815\",\"jersey\":\"80\",\"weight\":\"191\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"id\":\"14560\",\"team\":\"CHI\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"82\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"805698000\",\"draft_team\":\"FA\",\"stats_id\":\"32548\",\"position\":\"PN\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"stats_global_id\":\"839067\",\"height\":\"75\",\"rotowire_id\":\"14265\",\"jersey\":\"6\",\"weight\":\"219\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"id\":\"14568\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"852181200\",\"draft_team\":\"FA\",\"stats_id\":\"32589\",\"position\":\"S\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"stats_global_id\":\"865648\",\"height\":\"71\",\"rotowire_id\":\"14297\",\"jersey\":\"32\",\"weight\":\"195\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"id\":\"14579\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"birthdate\":\"832568400\",\"draft_team\":\"FA\",\"stats_id\":\"32222\",\"position\":\"LB\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"stats_global_id\":\"828111\",\"height\":\"74\",\"rotowire_id\":\"14081\",\"jersey\":\"54\",\"weight\":\"240\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"id\":\"14584\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"birthdate\":\"870670800\",\"draft_team\":\"FA\",\"stats_id\":\"32318\",\"position\":\"LB\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"866464\",\"height\":\"74\",\"rotowire_id\":\"13829\",\"jersey\":\"46\",\"weight\":\"228\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"id\":\"14590\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"birthdate\":\"830408400\",\"draft_team\":\"FA\",\"stats_id\":\"32364\",\"position\":\"TE\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"stats_global_id\":\"832213\",\"height\":\"75\",\"rotowire_id\":\"14184\",\"jersey\":\"40\",\"weight\":\"225\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"id\":\"14591\",\"team\":\"KCC\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"birthdate\":\"869634000\",\"draft_team\":\"FA\",\"stats_id\":\"32123\",\"position\":\"WR\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"stats_global_id\":\"883976\",\"height\":\"68\",\"rotowire_id\":\"13833\",\"jersey\":\"17\",\"weight\":\"190\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"id\":\"14592\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32461\",\"position\":\"DT\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"835485\",\"height\":\"76\",\"rotowire_id\":\"14213\",\"jersey\":\"62\",\"weight\":\"285\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"id\":\"14595\",\"team\":\"DET\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"birthdate\":\"829112400\",\"draft_team\":\"FA\",\"stats_id\":\"32384\",\"position\":\"PK\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"stats_global_id\":\"836963\",\"height\":\"71\",\"rotowire_id\":\"14172\",\"jersey\":\"4\",\"weight\":\"213\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"id\":\"14600\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"birthdate\":\"808635600\",\"draft_team\":\"FA\",\"stats_id\":\"32439\",\"position\":\"RB\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"stats_global_id\":\"835694\",\"height\":\"72\",\"rotowire_id\":\"13913\",\"jersey\":\"42\",\"weight\":\"205\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"id\":\"14612\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"birthdate\":\"859784400\",\"draft_team\":\"FA\",\"stats_id\":\"32187\",\"position\":\"WR\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"stats_global_id\":\"877596\",\"height\":\"70\",\"rotowire_id\":\"14055\",\"jersey\":\"15\",\"weight\":\"190\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"id\":\"14613\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"birthdate\":\"829285200\",\"draft_team\":\"FA\",\"stats_id\":\"32581\",\"position\":\"QB\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"stats_global_id\":\"837040\",\"height\":\"73\",\"rotowire_id\":\"13566\",\"jersey\":\"6\",\"weight\":\"210\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"id\":\"14618\",\"team\":\"PIT\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"881730000\",\"draft_team\":\"FA\",\"stats_id\":\"32642\",\"position\":\"QB\",\"name\":\"Ta'amu, Jordan\",\"college\":\"Mississippi\",\"stats_global_id\":\"974470\",\"height\":\"75\",\"rotowire_id\":\"13629\",\"jersey\":\"6\",\"weight\":\"221\",\"sportsdata_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"id\":\"14622\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"817448400\",\"draft_team\":\"FA\",\"stats_id\":\"32386\",\"position\":\"PN\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"stats_global_id\":\"866061\",\"height\":\"76\",\"rotowire_id\":\"14171\",\"jersey\":\"6\",\"weight\":\"220\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"id\":\"14630\",\"team\":\"LVR\"},{\"draft_year\":\"2019\",\"birthdate\":\"857192400\",\"draft_team\":\"FA\",\"stats_id\":\"32321\",\"position\":\"DT\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"stats_global_id\":\"883319\",\"height\":\"73\",\"rotowire_id\":\"13519\",\"jersey\":\"60\",\"weight\":\"285\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"id\":\"14652\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"birthdate\":\"827211600\",\"draft_team\":\"FA\",\"stats_id\":\"32425\",\"position\":\"DT\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"stats_global_id\":\"834396\",\"height\":\"73\",\"rotowire_id\":\"14204\",\"jersey\":\"79\",\"weight\":\"299\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"id\":\"14653\",\"team\":\"TEN\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"stats_id\":\"32295\",\"position\":\"TE\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"stats_global_id\":\"884045\",\"height\":\"76\",\"rotowire_id\":\"14094\",\"jersey\":\"86\",\"weight\":\"245\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"id\":\"14654\",\"team\":\"WAS\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32241\",\"position\":\"LB\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"881829\",\"height\":\"73\",\"rotowire_id\":\"13487\",\"jersey\":\"48\",\"weight\":\"235\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"id\":\"14660\",\"team\":\"NYG\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"38\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"LVR\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"27\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"95\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"LAR\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Wiltz, Jomal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"74\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"birthdate\":\"873349200\",\"draft_team\":\"FA\",\"stats_id\":\"32155\",\"position\":\"DT\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14044\",\"jersey\":\"72\",\"weight\":\"320\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"id\":\"14677\",\"team\":\"ARI\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"79\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"832395600\",\"draft_team\":\"FA\",\"stats_id\":\"32304\",\"position\":\"LB\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13539\",\"jersey\":\"50\",\"weight\":\"240\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"id\":\"14682\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"ARI\"},{\"draft_year\":\"2019\",\"birthdate\":\"863413200\",\"draft_team\":\"FA\",\"stats_id\":\"32552\",\"position\":\"S\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14267\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"id\":\"14702\",\"team\":\"LAC\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"71\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"birthdate\":\"829026000\",\"draft_team\":\"FA\",\"stats_id\":\"32417\",\"position\":\"PK\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14254\",\"jersey\":\"7\",\"weight\":\"190\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"id\":\"14717\",\"team\":\"IND\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"47\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"DEN\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"PHI\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32671\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14777\",\"draft_team\":\"CIN\",\"birthdate\":\"850194000\",\"name\":\"Burrow, Joe\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"14442\",\"height\":\"76\",\"twitter_username\":\"Joe_Burrow10\",\"sportsdata_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"team\":\"CIN\",\"cbs_id\":\"2179798\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32675\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14778\",\"draft_team\":\"MIA\",\"birthdate\":\"888814800\",\"name\":\"Tagovailoa, Tua\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"14465\",\"height\":\"73\",\"twitter_username\":\"Tuaamann\",\"sportsdata_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"team\":\"MIA\",\"cbs_id\":\"2741209\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32676\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"237\",\"id\":\"14779\",\"draft_team\":\"LAC\",\"birthdate\":\"889506000\",\"name\":\"Herbert, Justin\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"rotowire_id\":\"14446\",\"height\":\"78\",\"twitter_username\":\"Justin10Herbert\",\"sportsdata_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"team\":\"LAC\",\"cbs_id\":\"2221960\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32792\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14780\",\"draft_team\":\"IND\",\"birthdate\":\"879742800\",\"name\":\"Eason, Jacob\",\"draft_pick\":\"16\",\"college\":\"Washington\",\"rotowire_id\":\"14401\",\"height\":\"78\",\"twitter_username\":\"skinnyqb10\",\"sportsdata_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"team\":\"IND\",\"cbs_id\":\"2240210\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32837\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"222\",\"id\":\"14781\",\"draft_team\":\"BUF\",\"birthdate\":\"901774800\",\"name\":\"Fromm, Jake\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"rotowire_id\":\"14486\",\"height\":\"74\",\"twitter_username\":\"FrommJake\",\"sportsdata_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"team\":\"BUF\",\"cbs_id\":\"2803326\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32696\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14782\",\"draft_team\":\"GBP\",\"birthdate\":\"909982800\",\"name\":\"Love, Jordan\",\"draft_pick\":\"26\",\"college\":\"Utah State\",\"rotowire_id\":\"14371\",\"height\":\"76\",\"twitter_username\":\"jordan3love\",\"sportsdata_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"team\":\"GBP\",\"cbs_id\":\"2239997\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32723\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14783\",\"draft_team\":\"PHI\",\"birthdate\":\"902466000\",\"name\":\"Hurts, Jalen\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14416\",\"height\":\"74\",\"twitter_username\":\"JalenHurts\",\"sportsdata_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"team\":\"PHI\",\"cbs_id\":\"2240246\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33207\",\"position\":\"QB\",\"name\":\"Montez, Steven\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14393\",\"id\":\"14784\",\"team\":\"WAS\",\"cbs_id\":\"2185536\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32914\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"14785\",\"draft_team\":\"MIN\",\"birthdate\":\"872571600\",\"name\":\"Stanley, Nate\",\"draft_pick\":\"30\",\"college\":\"Iowa\",\"rotowire_id\":\"14566\",\"height\":\"76\",\"twitter_username\":\"Njstan4\",\"sportsdata_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"team\":\"MIN\",\"cbs_id\":\"2251110\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33246\",\"position\":\"QB\",\"name\":\"Patterson, Shea\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14469\",\"id\":\"14786\",\"team\":\"FA\",\"cbs_id\":\"2221866\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Gordon, Anthony\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14431\",\"id\":\"14787\",\"team\":\"SEA\",\"cbs_id\":\"2251387\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33015\",\"position\":\"QB\",\"name\":\"Lewerke, Brian\",\"college\":\"Michigan State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14530\",\"id\":\"14788\",\"team\":\"FA\",\"cbs_id\":\"2186429\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32993\",\"position\":\"QB\",\"name\":\"Huntley, Tyler\",\"college\":\"Utah\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14563\",\"sportsdata_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"id\":\"14789\",\"team\":\"BAL\",\"cbs_id\":\"3159137\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32795\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14790\",\"draft_team\":\"NYJ\",\"birthdate\":\"857106000\",\"name\":\"Morgan, James\",\"draft_pick\":\"19\",\"college\":\"Florida International\",\"rotowire_id\":\"14531\",\"height\":\"76\",\"twitter_username\":\"jmoneyyy12\",\"sportsdata_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"team\":\"NYJ\",\"cbs_id\":\"2180077\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Fine, Mason\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14786\",\"id\":\"14791\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Perkins, Bryce\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14429\",\"id\":\"14792\",\"team\":\"LAR\",\"cbs_id\":\"3159114\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32859\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"14793\",\"draft_team\":\"JAC\",\"birthdate\":\"829198800\",\"name\":\"Luton, Jake\",\"draft_pick\":\"10\",\"college\":\"Oregon State\",\"rotowire_id\":\"14562\",\"height\":\"78\",\"twitter_username\":\"jakeluton6\",\"sportsdata_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"team\":\"JAC\",\"cbs_id\":\"2132133\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32894\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14794\",\"draft_team\":\"TEN\",\"birthdate\":\"895640400\",\"name\":\"McDonald, Cole\",\"draft_pick\":\"10\",\"college\":\"Hawaii\",\"rotowire_id\":\"14493\",\"height\":\"76\",\"twitter_username\":\"ColeHunter520\",\"sportsdata_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"team\":\"TEN\",\"cbs_id\":\"2257005\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Bryant, Kelly\",\"college\":\"Missouri\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14528\",\"id\":\"14795\",\"team\":\"FA\",\"cbs_id\":\"2179210\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32928\",\"position\":\"QB\",\"name\":\"Neal, Riley\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14859\",\"id\":\"14796\",\"team\":\"DEN\",\"cbs_id\":\"3159056\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32705\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14797\",\"draft_team\":\"DET\",\"birthdate\":\"916290000\",\"name\":\"Swift, D'Andre\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"14394\",\"height\":\"70\",\"twitter_username\":\"DAndreSwift\",\"sportsdata_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"team\":\"DET\",\"cbs_id\":\"2871710\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32756\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14798\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Moss, Zack\",\"draft_pick\":\"22\",\"college\":\"Utah\",\"rotowire_id\":\"14564\",\"height\":\"70\",\"twitter_username\":\"PresMoss2\",\"sportsdata_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"team\":\"BUF\",\"cbs_id\":\"2240516\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32722\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14799\",\"draft_team\":\"LAR\",\"birthdate\":\"930027600\",\"name\":\"Akers, Cam\",\"draft_pick\":\"20\",\"college\":\"Florida State\",\"rotowire_id\":\"14383\",\"height\":\"71\",\"twitter_username\":\"thereal_cam3\",\"sportsdata_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"team\":\"LAR\",\"cbs_id\":\"2804034\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32725\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14800\",\"draft_team\":\"BAL\",\"birthdate\":\"913870800\",\"name\":\"Dobbins, J.K.\",\"draft_pick\":\"23\",\"college\":\"Ohio State\",\"rotowire_id\":\"14418\",\"height\":\"70\",\"twitter_username\":\"jkdobbins22\",\"sportsdata_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"team\":\"BAL\",\"cbs_id\":\"2804420\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32892\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14801\",\"draft_team\":\"ARI\",\"birthdate\":\"945061200\",\"name\":\"Benjamin, Eno\",\"draft_pick\":\"8\",\"college\":\"Arizona State\",\"rotowire_id\":\"14372\",\"height\":\"70\",\"twitter_username\":\"eno_benjamin5\",\"sportsdata_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"team\":\"ARI\",\"cbs_id\":\"2760832\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32711\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14802\",\"draft_team\":\"IND\",\"birthdate\":\"916722000\",\"name\":\"Taylor, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14455\",\"height\":\"71\",\"twitter_username\":\"JayT23\",\"sportsdata_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"team\":\"IND\",\"cbs_id\":\"2866395\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32702\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14803\",\"draft_team\":\"KCC\",\"birthdate\":\"923806800\",\"name\":\"Edwards-Helaire, Clyde\",\"draft_pick\":\"32\",\"college\":\"LSU\",\"rotowire_id\":\"14514\",\"height\":\"68\",\"sportsdata_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"team\":\"KCC\",\"cbs_id\":\"2804554\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32794\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14804\",\"draft_team\":\"PIT\",\"name\":\"McFarland, Anthony\",\"draft_pick\":\"18\",\"college\":\"Maryland\",\"rotowire_id\":\"14357\",\"height\":\"69\",\"sportsdata_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"team\":\"PIT\",\"cbs_id\":\"2804293\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32732\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"espn_id\":\"4239934\",\"weight\":\"250\",\"id\":\"14805\",\"draft_team\":\"GBP\",\"birthdate\":\"894085200\",\"name\":\"Dillon, AJ\",\"draft_pick\":\"30\",\"college\":\"Boston College\",\"rotowire_id\":\"14370\",\"height\":\"73\",\"twitter_username\":\"ajdillon7\",\"sportsdata_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"team\":\"GBP\",\"cbs_id\":\"2867083\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32790\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14806\",\"draft_team\":\"NYJ\",\"birthdate\":\"886136400\",\"name\":\"Perine, Lamical\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"14427\",\"height\":\"71\",\"twitter_username\":\"lp_deucedeuce\",\"sportsdata_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"team\":\"NYJ\",\"cbs_id\":\"2248610\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32782\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14807\",\"draft_team\":\"LAC\",\"birthdate\":\"880002000\",\"name\":\"Kelley, Joshua\",\"draft_pick\":\"6\",\"college\":\"UCLA\",\"rotowire_id\":\"14494\",\"height\":\"71\",\"twitter_username\":\"SmoothplayJK\",\"sportsdata_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"team\":\"LAC\",\"cbs_id\":\"2183195\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32763\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14808\",\"draft_team\":\"TEN\",\"birthdate\":\"899960400\",\"name\":\"Evans, Darrynton\",\"draft_pick\":\"29\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14400\",\"height\":\"71\",\"twitter_username\":\"ItzLiveee\",\"sportsdata_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"team\":\"TEN\",\"cbs_id\":\"2240806\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33153\",\"position\":\"RB\",\"name\":\"Smith, Rodney\",\"college\":\"Minnesota\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14435\",\"id\":\"14809\",\"team\":\"CAR\",\"cbs_id\":\"2165586\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32746\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14810\",\"draft_team\":\"TBB\",\"birthdate\":\"862722000\",\"name\":\"Vaughn, Ke'Shawn\",\"draft_pick\":\"12\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"14557\",\"height\":\"70\",\"twitter_username\":\"SneakVaughn\",\"sportsdata_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"team\":\"TBB\",\"cbs_id\":\"2179704\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Ahmed, Salvon\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14453\",\"id\":\"14811\",\"team\":\"SFO\",\"cbs_id\":\"2815163\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33098\",\"position\":\"RB\",\"name\":\"Anderson, Darius\",\"college\":\"TCU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14565\",\"id\":\"14812\",\"team\":\"DAL\",\"cbs_id\":\"2240319\"},{\"draft_year\":\"2020\",\"birthdate\":\"902638800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33138\",\"position\":\"RB\",\"name\":\"Robinson, James\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14660\",\"weight\":\"220\",\"sportsdata_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"id\":\"14813\",\"team\":\"JAC\",\"cbs_id\":\"2257036\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33307\",\"position\":\"RB\",\"name\":\"Herrien, Brian\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14438\",\"id\":\"14814\",\"team\":\"CLE\",\"cbs_id\":\"2248619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32814\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14815\",\"draft_team\":\"SEA\",\"birthdate\":\"905922000\",\"name\":\"Dallas, DeeJay\",\"draft_pick\":\"38\",\"college\":\"Miami\",\"rotowire_id\":\"14410\",\"height\":\"70\",\"twitter_username\":\"DallasDeejay\",\"sportsdata_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"team\":\"SEA\",\"cbs_id\":\"2804094\"},{\"draft_year\":\"2020\",\"birthdate\":\"910846800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32972\",\"position\":\"RB\",\"name\":\"Warren, Michael\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14496\",\"weight\":\"224\",\"sportsdata_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"id\":\"14816\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Taylor, Patrick\",\"college\":\"Memphis\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14573\",\"id\":\"14817\",\"team\":\"GBP\",\"cbs_id\":\"2256736\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Jones, Xavier\",\"college\":\"SMU\",\"stats_global_id\":\"0\",\"id\":\"14818\",\"team\":\"LAR\",\"cbs_id\":\"3159182\"},{\"draft_year\":\"2020\",\"birthdate\":\"883544400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33126\",\"position\":\"RB\",\"name\":\"Feaster, Tavien\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14592\",\"weight\":\"215\",\"sportsdata_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"id\":\"14819\",\"team\":\"JAC\",\"cbs_id\":\"2239519\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33037\",\"position\":\"RB\",\"name\":\"Leake, Javon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14361\",\"id\":\"14820\",\"team\":\"NYG\",\"cbs_id\":\"2804292\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Hasty, JaMycal\",\"college\":\"Baylor\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14392\",\"id\":\"14821\",\"team\":\"SFO\",\"cbs_id\":\"2189504\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Corbin, Reggie\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14440\",\"id\":\"14822\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33100\",\"position\":\"RB\",\"name\":\"Dowdle, Rico\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14657\",\"id\":\"14823\",\"team\":\"DAL\",\"cbs_id\":\"2252798\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33161\",\"position\":\"RB\",\"name\":\"Phillips, Scottie\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14659\",\"id\":\"14824\",\"team\":\"HOU\",\"cbs_id\":\"2962972\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Conkrite, Jordan\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"id\":\"14825\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Pierce, Artavis\",\"college\":\"Oregon State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14881\",\"id\":\"14826\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33028\",\"position\":\"RB\",\"name\":\"Taylor, J.J.\",\"college\":\"Arizona\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14459\",\"id\":\"14827\",\"team\":\"NEP\",\"cbs_id\":\"2252786\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33114\",\"position\":\"RB\",\"name\":\"Jones, Tony\",\"college\":\"Notre Dame\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14423\",\"weight\":\"224\",\"sportsdata_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"id\":\"14828\",\"team\":\"NOS\",\"cbs_id\":\"2260681\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33309\",\"position\":\"RB\",\"name\":\"LeMay, Benny\",\"college\":\"Charlotte\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14532\",\"id\":\"14829\",\"team\":\"CLE\",\"cbs_id\":\"2258154\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32926\",\"position\":\"RB\",\"name\":\"Bellamy, LaVante\",\"college\":\"Western Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14656\",\"id\":\"14830\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32966\",\"position\":\"RB\",\"name\":\"Killins Jr., Adrian\",\"college\":\"Central Florida\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14396\",\"id\":\"14831\",\"team\":\"PHI\",\"cbs_id\":\"3159156\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32687\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"189\",\"id\":\"14832\",\"draft_team\":\"DAL\",\"birthdate\":\"923547600\",\"name\":\"Lamb, CeeDee\",\"draft_pick\":\"17\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14411\",\"height\":\"74\",\"twitter_username\":\"_CeeDeeThree\",\"sportsdata_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"team\":\"DAL\",\"cbs_id\":\"2865251\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32685\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14833\",\"draft_team\":\"DEN\",\"birthdate\":\"924930000\",\"name\":\"Jeudy, Jerry\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"14458\",\"height\":\"73\",\"twitter_username\":\"jerryjeudy\",\"sportsdata_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"team\":\"DEN\",\"cbs_id\":\"2741201\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32682\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14834\",\"draft_team\":\"LVR\",\"birthdate\":\"917154000\",\"name\":\"Ruggs, Henry\",\"draft_pick\":\"12\",\"college\":\"Alabama\",\"rotowire_id\":\"14473\",\"height\":\"72\",\"twitter_username\":\"__RUGGS\",\"sportsdata_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32703\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14835\",\"draft_team\":\"CIN\",\"birthdate\":\"917499600\",\"name\":\"Higgins, Tee\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"14506\",\"height\":\"76\",\"twitter_username\":\"teehiggins5\",\"sportsdata_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"team\":\"CIN\",\"cbs_id\":\"2809208\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32692\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14836\",\"draft_team\":\"MIN\",\"birthdate\":\"929509200\",\"name\":\"Jefferson, Justin\",\"draft_pick\":\"22\",\"college\":\"LSU\",\"rotowire_id\":\"14509\",\"height\":\"75\",\"twitter_username\":\"JJettas2\",\"sportsdata_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"team\":\"MIN\",\"cbs_id\":\"2871343\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32716\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"14837\",\"draft_team\":\"DEN\",\"birthdate\":\"931410000\",\"name\":\"Hamler, KJ\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14462\",\"height\":\"69\",\"twitter_username\":\"Kj_hamler\",\"sportsdata_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"team\":\"DEN\",\"cbs_id\":\"2804432\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32712\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14838\",\"draft_team\":\"JAC\",\"birthdate\":\"907563600\",\"name\":\"Shenault, Laviska\",\"draft_pick\":\"10\",\"college\":\"Colorado\",\"rotowire_id\":\"14358\",\"height\":\"74\",\"twitter_username\":\"Viska2live\",\"sportsdata_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32691\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14839\",\"draft_team\":\"PHI\",\"birthdate\":\"915166800\",\"name\":\"Reagor, Jalen\",\"draft_pick\":\"21\",\"college\":\"TCU\",\"rotowire_id\":\"14421\",\"height\":\"71\",\"twitter_username\":\"jalenreagor\",\"sportsdata_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"team\":\"PHI\",\"cbs_id\":\"2803733\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32695\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"14840\",\"draft_team\":\"SFO\",\"birthdate\":\"890110800\",\"name\":\"Aiyuk, Brandon\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"rotowire_id\":\"14386\",\"height\":\"73\",\"twitter_username\":\"THE2ERA\",\"sportsdata_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"team\":\"SFO\",\"cbs_id\":\"2967489\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32719\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14841\",\"draft_team\":\"PIT\",\"birthdate\":\"899787600\",\"name\":\"Claypool, Chase\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14433\",\"height\":\"76\",\"twitter_username\":\"ChaseClaypool\",\"sportsdata_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"team\":\"PIT\",\"cbs_id\":\"2260676\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32704\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14842\",\"draft_team\":\"IND\",\"birthdate\":\"876027600\",\"name\":\"Pittman, Michael\",\"draft_pick\":\"2\",\"college\":\"USC\",\"rotowire_id\":\"14378\",\"height\":\"76\",\"twitter_username\":\"MikePitt_Jr\",\"sportsdata_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"team\":\"IND\",\"cbs_id\":\"2240188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32750\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14843\",\"draft_team\":\"LVR\",\"birthdate\":\"876805200\",\"name\":\"Bowden, Lynn\",\"draft_pick\":\"16\",\"college\":\"Kentucky\",\"rotowire_id\":\"14460\",\"height\":\"72\",\"twitter_username\":\"LynnBowden_1\",\"sportsdata_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"team\":\"LVR\",\"cbs_id\":\"2875380\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32751\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14844\",\"draft_team\":\"LVR\",\"birthdate\":\"910933200\",\"name\":\"Edwards, Bryan\",\"draft_pick\":\"17\",\"college\":\"South Carolina\",\"rotowire_id\":\"14577\",\"height\":\"75\",\"twitter_username\":\"B__ED89\",\"sportsdata_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"team\":\"LVR\",\"cbs_id\":\"2221840\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32798\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14845\",\"draft_team\":\"BUF\",\"birthdate\":\"922942800\",\"name\":\"Davis, Gabriel\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"rotowire_id\":\"14359\",\"height\":\"75\",\"twitter_username\":\"DavisGB1\",\"sportsdata_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"team\":\"BUF\",\"cbs_id\":\"2804813\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32729\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14846\",\"draft_team\":\"NYJ\",\"birthdate\":\"876459600\",\"name\":\"Mims, Denzel\",\"draft_pick\":\"27\",\"college\":\"Baylor\",\"rotowire_id\":\"14539\",\"height\":\"75\",\"twitter_username\":\"Zel5Zelly\",\"sportsdata_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"team\":\"NYJ\",\"cbs_id\":\"2253076\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32762\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14847\",\"draft_team\":\"BAL\",\"birthdate\":\"874040400\",\"name\":\"Duvernay, Devin\",\"draft_pick\":\"28\",\"college\":\"Texas\",\"rotowire_id\":\"14636\",\"height\":\"71\",\"twitter_username\":\"Dev_Duv5\",\"sportsdata_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"team\":\"BAL\",\"cbs_id\":\"2246849\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32871\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14848\",\"draft_team\":\"BAL\",\"birthdate\":\"843282000\",\"name\":\"Proche, James\",\"draft_pick\":\"22\",\"college\":\"SMU\",\"rotowire_id\":\"14415\",\"height\":\"72\",\"twitter_username\":\"jamesproche3\",\"sportsdata_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"team\":\"BAL\",\"cbs_id\":\"2180769\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32877\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14849\",\"draft_team\":\"BUF\",\"birthdate\":\"908946000\",\"name\":\"Hodgins, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Oregon State\",\"rotowire_id\":\"14356\",\"height\":\"76\",\"twitter_username\":\"IsaiahHodgins\",\"sportsdata_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"team\":\"BUF\",\"cbs_id\":\"2783899\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32836\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14850\",\"draft_team\":\"DET\",\"birthdate\":\"891406800\",\"name\":\"Cephus, Quintez\",\"draft_pick\":\"20\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14466\",\"height\":\"73\",\"twitter_username\":\"QoDeep_87\",\"sportsdata_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"team\":\"DET\",\"cbs_id\":\"2251870\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32890\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14851\",\"draft_team\":\"LAC\",\"birthdate\":\"874299600\",\"name\":\"Hill, K.J.\",\"draft_pick\":\"6\",\"college\":\"Ohio State\",\"rotowire_id\":\"14414\",\"height\":\"72\",\"twitter_username\":\"kayjayhill\",\"sportsdata_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"team\":\"LAC\",\"cbs_id\":\"2179813\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32736\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14852\",\"draft_team\":\"WAS\",\"name\":\"Gibson, Antonio\",\"draft_pick\":\"2\",\"college\":\"Memphis\",\"rotowire_id\":\"14639\",\"height\":\"74\",\"twitter_username\":\"antoniogibson14\",\"sportsdata_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"team\":\"WAS\",\"cbs_id\":\"2960976\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32835\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14853\",\"draft_team\":\"JAC\",\"birthdate\":\"874990800\",\"name\":\"Johnson, Collin\",\"draft_pick\":\"19\",\"college\":\"Texas\",\"rotowire_id\":\"14545\",\"height\":\"78\",\"twitter_username\":\"Call_In_Johnson\",\"sportsdata_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"team\":\"JAC\",\"cbs_id\":\"2240315\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Victor, Binjimen\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14529\",\"id\":\"14854\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33039\",\"position\":\"WR\",\"name\":\"Mack, Austin\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14546\",\"weight\":\"215\",\"sportsdata_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"id\":\"14855\",\"team\":\"NYG\",\"cbs_id\":\"2239784\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33027\",\"position\":\"WR\",\"name\":\"Davis, Quartney\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14461\",\"id\":\"14856\",\"team\":\"MIN\",\"cbs_id\":\"2249179\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32857\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14857\",\"draft_team\":\"CLE\",\"birthdate\":\"919400400\",\"name\":\"Peoples-Jones, Donovan\",\"draft_pick\":\"8\",\"college\":\"Michigan\",\"rotowire_id\":\"14457\",\"height\":\"74\",\"twitter_username\":\"dpeoplesjones\",\"sportsdata_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"team\":\"CLE\",\"cbs_id\":\"2819119\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32727\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14858\",\"draft_team\":\"LAR\",\"birthdate\":\"838357200\",\"name\":\"Jefferson, Van\",\"draft_pick\":\"25\",\"college\":\"Florida\",\"rotowire_id\":\"14430\",\"height\":\"74\",\"sportsdata_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"team\":\"LAR\",\"cbs_id\":\"2186342\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Jackson, Trishton\",\"college\":\"Syracuse\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14402\",\"id\":\"14859\",\"team\":\"LAR\",\"cbs_id\":\"2253371\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32887\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14860\",\"draft_team\":\"SFO\",\"birthdate\":\"868510800\",\"name\":\"Jennings, Jauan\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"14376\",\"height\":\"75\",\"sportsdata_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"team\":\"SFO\",\"cbs_id\":\"2180514\"},{\"draft_year\":\"2020\",\"birthdate\":\"842590800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33113\",\"position\":\"WR\",\"name\":\"Johnson, Juwan\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14630\",\"weight\":\"231\",\"sportsdata_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"id\":\"14861\",\"team\":\"NOS\",\"cbs_id\":\"2186637\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32821\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14862\",\"draft_team\":\"LAC\",\"birthdate\":\"883890000\",\"name\":\"Reed, Joe\",\"draft_pick\":\"5\",\"college\":\"Virginia\",\"rotowire_id\":\"14428\",\"height\":\"73\",\"twitter_username\":\"JoeBee_2\",\"sportsdata_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"team\":\"LAC\",\"cbs_id\":\"2251260\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32812\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14863\",\"draft_team\":\"WAS\",\"birthdate\":\"892270800\",\"name\":\"Gandy-Golden, Antonio\",\"draft_pick\":\"36\",\"college\":\"Liberty\",\"rotowire_id\":\"14568\",\"height\":\"76\",\"twitter_username\":\"gandygolden11\",\"sportsdata_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"team\":\"WAS\",\"cbs_id\":\"2250521\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32831\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14864\",\"draft_team\":\"TBB\",\"birthdate\":\"904021200\",\"name\":\"Johnson, Tyler\",\"draft_pick\":\"15\",\"college\":\"Minnesota\",\"rotowire_id\":\"14432\",\"height\":\"74\",\"twitter_username\":\"T_muhneyy10\",\"sportsdata_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"team\":\"TBB\",\"cbs_id\":\"1620002\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32884\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"14865\",\"draft_team\":\"SEA\",\"birthdate\":\"902206800\",\"name\":\"Swain, Freddie\",\"draft_pick\":\"35\",\"college\":\"Florida\",\"rotowire_id\":\"14644\",\"height\":\"72\",\"sportsdata_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"team\":\"SEA\",\"cbs_id\":\"2221836\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33022\",\"position\":\"WR\",\"name\":\"Thomas, Jeff\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14382\",\"id\":\"14866\",\"team\":\"NEP\",\"cbs_id\":\"2826768\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32713\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"258\",\"id\":\"14867\",\"draft_team\":\"CHI\",\"birthdate\":\"921042000\",\"name\":\"Kmet, Cole\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14436\",\"height\":\"78\",\"twitter_username\":\"ColeKmet\",\"sportsdata_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"team\":\"CHI\",\"cbs_id\":\"2868619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32806\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14868\",\"draft_team\":\"LAR\",\"birthdate\":\"859438800\",\"name\":\"Hopkins, Brycen\",\"draft_pick\":\"30\",\"college\":\"Purdue\",\"rotowire_id\":\"14586\",\"height\":\"77\",\"twitter_username\":\"Itsbhop89\",\"sportsdata_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"team\":\"LAR\",\"cbs_id\":\"2183906\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33208\",\"position\":\"TE\",\"name\":\"Moss, Thaddeus\",\"college\":\"LSU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14524\",\"id\":\"14869\",\"team\":\"WAS\",\"cbs_id\":\"2246946\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32775\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14870\",\"draft_team\":\"NOS\",\"birthdate\":\"855118800\",\"name\":\"Trautman, Adam\",\"draft_pick\":\"41\",\"college\":\"Dayton\",\"rotowire_id\":\"14541\",\"height\":\"78\",\"sportsdata_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"team\":\"NOS\",\"cbs_id\":\"2182228\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32803\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14871\",\"draft_team\":\"SEA\",\"birthdate\":\"915771600\",\"name\":\"Parkinson, Colby\",\"draft_pick\":\"27\",\"college\":\"Stanford\",\"rotowire_id\":\"14463\",\"height\":\"79\",\"sportsdata_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"team\":\"SEA\",\"cbs_id\":\"2867522\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33064\",\"position\":\"TE\",\"name\":\"Pinkney, Jared\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14632\",\"sportsdata_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"id\":\"14872\",\"team\":\"ATL\",\"cbs_id\":\"2180558\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32788\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14873\",\"draft_team\":\"DEN\",\"birthdate\":\"893480400\",\"name\":\"Okwuegbunam, Albert\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"rotowire_id\":\"14369\",\"height\":\"77\",\"twitter_username\":\"AOkwuegbunam\",\"sportsdata_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"team\":\"DEN\",\"cbs_id\":\"2245117\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Bryant, Hunter\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14364\",\"id\":\"14874\",\"team\":\"DET\",\"cbs_id\":\"2815166\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32785\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14875\",\"draft_team\":\"CLE\",\"birthdate\":\"893307600\",\"name\":\"Bryant, Harrison\",\"draft_pick\":\"9\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14576\",\"height\":\"77\",\"twitter_username\":\"hbryant17\",\"sportsdata_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"team\":\"CLE\",\"cbs_id\":\"2241240\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32764\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14876\",\"draft_team\":\"GBP\",\"birthdate\":\"855896400\",\"name\":\"Deguara, Josiah\",\"draft_pick\":\"30\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14629\",\"height\":\"75\",\"twitter_username\":\"JosiahD5\",\"sportsdata_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"team\":\"GBP\",\"cbs_id\":\"2181108\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32672\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14877\",\"draft_team\":\"WAS\",\"birthdate\":\"924066000\",\"name\":\"Young, Chase\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"14452\",\"height\":\"77\",\"twitter_username\":\"youngchase907\",\"sportsdata_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"team\":\"WAS\",\"cbs_id\":\"2829229\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32707\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"264\",\"id\":\"14878\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Gross-Matos, Yetur\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"rotowire_id\":\"14355\",\"height\":\"77\",\"twitter_username\":\"__lobo99\",\"sportsdata_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"team\":\"CAR\",\"cbs_id\":\"2868927\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32724\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14879\",\"draft_team\":\"BUF\",\"birthdate\":\"905835600\",\"name\":\"Epenesa, A.J.\",\"draft_pick\":\"22\",\"college\":\"Iowa\",\"rotowire_id\":\"14501\",\"height\":\"77\",\"twitter_username\":\"ajepenesa24\",\"sportsdata_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"team\":\"BUF\",\"cbs_id\":\"2865969\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32817\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14880\",\"draft_team\":\"CIN\",\"birthdate\":\"893739600\",\"name\":\"Kareem, Khalid\",\"draft_pick\":\"1\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14684\",\"height\":\"76\",\"twitter_username\":\"khalid_kareem53\",\"sportsdata_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"team\":\"CIN\",\"cbs_id\":\"2240621\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Coe, Nick\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14398\",\"id\":\"14881\",\"team\":\"NEP\",\"cbs_id\":\"2257893\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"rotoworld_id\":\"60119\",\"status\":\"R\",\"stats_id\":\"32760\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14882\",\"draft_team\":\"HOU\",\"birthdate\":\"864536400\",\"name\":\"Greenard, Jonathan\",\"draft_pick\":\"26\",\"college\":\"Florida\",\"rotowire_id\":\"14550\",\"height\":\"75\",\"twitter_username\":\"jongreenard7\",\"sportsdata_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"team\":\"HOU\",\"cbs_id\":\"2181166\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32717\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"279\",\"id\":\"14883\",\"draft_team\":\"ATL\",\"birthdate\":\"894862800\",\"name\":\"Davidson, Marlon\",\"draft_pick\":\"15\",\"college\":\"Auburn\",\"rotowire_id\":\"14540\",\"height\":\"75\",\"twitter_username\":\"marlondavidson7\",\"sportsdata_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"team\":\"ATL\",\"cbs_id\":\"2222006\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32824\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14884\",\"draft_team\":\"MIA\",\"birthdate\":\"842331600\",\"name\":\"Strowbridge, Jason\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"rotowire_id\":\"14730\",\"height\":\"77\",\"sportsdata_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"team\":\"MIA\",\"cbs_id\":\"2179351\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32749\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"14885\",\"draft_team\":\"NYJ\",\"name\":\"Zuniga, Jabari\",\"draft_pick\":\"15\",\"college\":\"Florida\",\"rotowire_id\":\"14734\",\"height\":\"76\",\"twitter_username\":\"JabariZuniga\",\"sportsdata_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"team\":\"NYJ\",\"cbs_id\":\"2180452\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14886\",\"draft_team\":\"DAL\",\"birthdate\":\"908600400\",\"name\":\"Anae, Bradlee\",\"draft_pick\":\"33\",\"college\":\"Utah\",\"rotowire_id\":\"14582\",\"height\":\"75\",\"sportsdata_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"team\":\"DAL\",\"cbs_id\":\"2240496\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32678\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14887\",\"draft_team\":\"ARI\",\"birthdate\":\"901429200\",\"name\":\"Simmons, Isaiah\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"14525\",\"height\":\"75\",\"twitter_username\":\"isaiahsimmons25\",\"sportsdata_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"team\":\"ARI\",\"cbs_id\":\"2239532\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32690\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14888\",\"draft_team\":\"JAC\",\"birthdate\":\"932878800\",\"name\":\"Chaisson, K'Lavon\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"14523\",\"height\":\"76\",\"twitter_username\":\"S4CKGURU\",\"sportsdata_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"team\":\"JAC\",\"cbs_id\":\"2804551\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32693\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"234\",\"id\":\"14889\",\"draft_team\":\"LAC\",\"birthdate\":\"911192400\",\"name\":\"Murray, Kenneth\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14434\",\"height\":\"75\",\"twitter_username\":\"KennethMurray\",\"sportsdata_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"team\":\"LAC\",\"cbs_id\":\"2804138\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32767\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14890\",\"draft_team\":\"CLE\",\"birthdate\":\"922942800\",\"name\":\"Phillips, Jacob\",\"draft_pick\":\"33\",\"college\":\"LSU\",\"rotowire_id\":\"14517\",\"height\":\"76\",\"twitter_username\":\"jacobphilly\",\"sportsdata_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"team\":\"CLE\",\"cbs_id\":\"2804564\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32768\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14891\",\"draft_team\":\"BAL\",\"birthdate\":\"889074000\",\"name\":\"Harrison, Malik\",\"draft_pick\":\"34\",\"college\":\"Ohio State\",\"rotowire_id\":\"14648\",\"height\":\"75\",\"sportsdata_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"team\":\"BAL\",\"cbs_id\":\"2260979\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32697\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14892\",\"draft_team\":\"SEA\",\"birthdate\":\"877410000\",\"name\":\"Brooks, Jordyn\",\"draft_pick\":\"27\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14739\",\"height\":\"73\",\"twitter_username\":\"JordynBrooks_\",\"sportsdata_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"team\":\"SEA\",\"cbs_id\":\"2252263\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32744\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14893\",\"draft_team\":\"NOS\",\"name\":\"Baun, Zack\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14374\",\"height\":\"75\",\"twitter_username\":\"zackbizzaun\",\"sportsdata_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"team\":\"NOS\",\"cbs_id\":\"2183919\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32757\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14894\",\"draft_team\":\"NEP\",\"birthdate\":\"862462800\",\"name\":\"Jennings, Anfernee\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"14742\",\"height\":\"75\",\"twitter_username\":\"anferneejenning\",\"sportsdata_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"team\":\"NEP\",\"cbs_id\":\"2186321\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Woodward, David\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14645\",\"id\":\"14895\",\"team\":\"FA\",\"cbs_id\":\"2258285\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32698\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14896\",\"draft_team\":\"BAL\",\"birthdate\":\"934520400\",\"name\":\"Queen, Patrick\",\"draft_pick\":\"28\",\"college\":\"LSU\",\"rotowire_id\":\"14508\",\"height\":\"73\",\"twitter_username\":\"Patrickqueen_\",\"sportsdata_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"team\":\"BAL\",\"cbs_id\":\"2804566\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32677\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"318\",\"id\":\"14897\",\"draft_team\":\"CAR\",\"birthdate\":\"892616400\",\"name\":\"Brown, Derrick\",\"draft_pick\":\"7\",\"college\":\"Auburn\",\"rotowire_id\":\"13852\",\"height\":\"77\",\"twitter_username\":\"DerrickBrownAU5\",\"sportsdata_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"team\":\"CAR\",\"cbs_id\":\"2241797\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32726\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14898\",\"draft_team\":\"MIA\",\"birthdate\":\"865918800\",\"name\":\"Davis, Raekwon\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"14538\",\"height\":\"79\",\"twitter_username\":\"raekwondavis_99\",\"sportsdata_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"team\":\"MIA\",\"cbs_id\":\"2252833\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32684\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14899\",\"draft_team\":\"SFO\",\"birthdate\":\"875854800\",\"name\":\"Kinlaw, Javon\",\"draft_pick\":\"14\",\"college\":\"South Carolina\",\"rotowire_id\":\"14444\",\"height\":\"78\",\"twitter_username\":\"JavonKinlaw\",\"sportsdata_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"team\":\"SFO\",\"cbs_id\":\"2869019\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32741\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14900\",\"draft_team\":\"BAL\",\"birthdate\":\"879742800\",\"name\":\"Madubuike, Justin\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14380\",\"height\":\"75\",\"twitter_username\":\"MadubuikeJustin\",\"sportsdata_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"team\":\"BAL\",\"cbs_id\":\"2249188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32752\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"302\",\"id\":\"14901\",\"draft_team\":\"DAL\",\"birthdate\":\"853477200\",\"name\":\"Gallimore, Neville\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14451\",\"height\":\"74\",\"twitter_username\":\"path2greatwork\",\"sportsdata_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"team\":\"DAL\",\"cbs_id\":\"2179652\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32673\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14902\",\"draft_team\":\"DET\",\"birthdate\":\"917931600\",\"name\":\"Okudah, Jeff\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"14424\",\"height\":\"73\",\"twitter_username\":\"jeffokudah\",\"sportsdata_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"team\":\"DET\",\"cbs_id\":\"2804425\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32721\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"14903\",\"draft_team\":\"DAL\",\"birthdate\":\"906267600\",\"name\":\"Diggs, Trevon\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"14389\",\"height\":\"74\",\"twitter_username\":\"TrevonDiggs\",\"sportsdata_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"team\":\"DAL\",\"cbs_id\":\"2252834\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32731\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14904\",\"draft_team\":\"TEN\",\"birthdate\":\"904798800\",\"name\":\"Fulton, Kristian\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"14443\",\"height\":\"72\",\"twitter_username\":\"Kriss1_\",\"sportsdata_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"team\":\"TEN\",\"cbs_id\":\"2223248\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32679\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14905\",\"draft_team\":\"JAC\",\"birthdate\":\"907131600\",\"name\":\"Henderson, CJ\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"14367\",\"height\":\"73\",\"twitter_username\":\"HendersonChris_\",\"sportsdata_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"team\":\"JAC\",\"cbs_id\":\"2773013\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32689\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14906\",\"draft_team\":\"LVR\",\"birthdate\":\"823237200\",\"name\":\"Arnette, Damon\",\"draft_pick\":\"19\",\"college\":\"Ohio State\",\"rotowire_id\":\"14547\",\"height\":\"72\",\"twitter_username\":\"damon_arnette\",\"sportsdata_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"team\":\"LVR\",\"cbs_id\":\"2179793\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32714\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"14907\",\"draft_team\":\"CLE\",\"birthdate\":\"906267600\",\"name\":\"Delpit, Grant\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"14507\",\"height\":\"75\",\"twitter_username\":\"realgrantdelpit\",\"sportsdata_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"team\":\"CLE\",\"cbs_id\":\"2804169\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32706\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14908\",\"draft_team\":\"NYG\",\"birthdate\":\"934174800\",\"name\":\"McKinney, Xavier\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"rotowire_id\":\"14617\",\"height\":\"73\",\"twitter_username\":\"mckinney15__\",\"sportsdata_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"team\":\"NYG\",\"cbs_id\":\"2741205\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32715\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14909\",\"draft_team\":\"TBB\",\"birthdate\":\"903243600\",\"name\":\"Winfield, Antoine\",\"draft_pick\":\"13\",\"college\":\"Minnesota\",\"rotowire_id\":\"14484\",\"height\":\"69\",\"twitter_username\":\"AntoineWJr11\",\"sportsdata_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"team\":\"TBB\",\"cbs_id\":\"2239774\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32740\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14910\",\"draft_team\":\"MIA\",\"birthdate\":\"891493200\",\"name\":\"Jones, Brandon\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"rotowire_id\":\"14696\",\"height\":\"72\",\"twitter_username\":\"BlessedJones33\",\"sportsdata_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"team\":\"MIA\",\"cbs_id\":\"2246113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32738\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14911\",\"draft_team\":\"NYJ\",\"birthdate\":\"844923600\",\"name\":\"Davis, Ashtyn\",\"draft_pick\":\"4\",\"college\":\"California\",\"rotowire_id\":\"14447\",\"height\":\"73\",\"sportsdata_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"team\":\"NYJ\",\"cbs_id\":\"2180264\"},{\"draft_year\":\"2020\",\"birthdate\":\"854514000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33211\",\"position\":\"PK\",\"name\":\"Blankenship, Rodrigo\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14437\",\"weight\":\"191\",\"sportsdata_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"id\":\"14912\",\"team\":\"IND\",\"cbs_id\":\"2183949\"},{\"draft_year\":\"2018\",\"birthdate\":\"773298000\",\"draft_team\":\"FA\",\"stats_id\":\"31669\",\"position\":\"DE\",\"name\":\"Walker, Cavon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13244\",\"weight\":\"278\",\"sportsdata_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"id\":\"14913\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"640933200\",\"draft_team\":\"FA\",\"stats_id\":\"32668\",\"position\":\"PK\",\"name\":\"Hajrullahu, Lirim\",\"college\":\"Western Ontario\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14808\",\"weight\":\"205\",\"sportsdata_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"id\":\"14914\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"799563600\",\"draft_team\":\"FA\",\"stats_id\":\"32667\",\"position\":\"PK\",\"name\":\"MacGinnis, Austin\",\"college\":\"Kentucky\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14354\",\"weight\":\"185\",\"sportsdata_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"id\":\"14915\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"878706000\",\"draft_team\":\"FA\",\"stats_id\":\"32097\",\"position\":\"CB\",\"name\":\"Smith, Saivion\",\"college\":\"Alabama\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13589\",\"jersey\":\"35\",\"weight\":\"199\",\"sportsdata_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"id\":\"14916\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852613200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32669\",\"position\":\"RB\",\"name\":\"Patrick, Jacques\",\"college\":\"Florida State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13964\",\"weight\":\"236\",\"sportsdata_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"id\":\"14917\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32686\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14918\",\"draft_team\":\"ATL\",\"birthdate\":\"906526800\",\"name\":\"Terrell, A.J.\",\"draft_pick\":\"16\",\"college\":\"Clemson\",\"rotowire_id\":\"14526\",\"height\":\"74\",\"twitter_username\":\"ajterrell_8\",\"sportsdata_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"team\":\"ATL\",\"cbs_id\":\"2809212\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32700\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14919\",\"draft_team\":\"MIA\",\"birthdate\":\"943678800\",\"name\":\"Igbinoghene, Noah\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"14713\",\"height\":\"71\",\"twitter_username\":\"Noah_Igbo9\",\"sportsdata_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"team\":\"MIA\",\"cbs_id\":\"2829987\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32701\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14920\",\"draft_team\":\"MIN\",\"birthdate\":\"850366800\",\"name\":\"Gladney, Jeff\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"14548\",\"height\":\"72\",\"sportsdata_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"team\":\"MIN\",\"cbs_id\":\"2180855\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32710\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14921\",\"draft_team\":\"NEP\",\"birthdate\":\"827470800\",\"name\":\"Dugger, Kyle\",\"draft_pick\":\"5\",\"college\":\"Lenoir-Rhyne University\",\"rotowire_id\":\"14542\",\"height\":\"74\",\"twitter_username\":\"KingDugg_3\",\"sportsdata_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"team\":\"NEP\",\"cbs_id\":\"3150388\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32709\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14922\",\"draft_team\":\"HOU\",\"birthdate\":\"899960400\",\"name\":\"Blacklock, Ross\",\"draft_pick\":\"8\",\"college\":\"TCU\",\"rotowire_id\":\"14406\",\"height\":\"76\",\"twitter_username\":\"1krozayy\",\"sportsdata_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"team\":\"HOU\",\"cbs_id\":\"2240321\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32718\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14923\",\"draft_team\":\"SEA\",\"birthdate\":\"859179600\",\"name\":\"Taylor, Darrell\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"14649\",\"height\":\"75\",\"twitter_username\":\"darrelltaylorst\",\"sportsdata_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"team\":\"SEA\",\"cbs_id\":\"2180538\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32720\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14924\",\"draft_team\":\"CHI\",\"name\":\"Johnson, Jaylon\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14627\",\"height\":\"72\",\"twitter_username\":\"NBAxJay1\",\"sportsdata_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"team\":\"CHI\",\"cbs_id\":\"2827532\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32730\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14925\",\"draft_team\":\"NEP\",\"birthdate\":\"906094800\",\"name\":\"Uche, Josh\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"14477\",\"height\":\"74\",\"twitter_username\":\"_Uche35\",\"sportsdata_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"team\":\"NEP\",\"cbs_id\":\"2260670\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32733\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14926\",\"draft_team\":\"KCC\",\"birthdate\":\"887518800\",\"name\":\"Gay, Willie\",\"draft_pick\":\"31\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14520\",\"height\":\"74\",\"twitter_username\":\"WillieG___\",\"sportsdata_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32734\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14927\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Chinn, Jeremy\",\"draft_pick\":\"32\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14623\",\"height\":\"75\",\"twitter_username\":\"ChinnJeremy2\",\"sportsdata_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"team\":\"CAR\",\"cbs_id\":\"2247190\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32735\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14928\",\"draft_team\":\"CIN\",\"birthdate\":\"836802000\",\"name\":\"Wilson, Logan\",\"draft_pick\":\"1\",\"college\":\"Wyoming\",\"rotowire_id\":\"14647\",\"height\":\"74\",\"twitter_username\":\"ljw21\",\"sportsdata_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"team\":\"CIN\",\"cbs_id\":\"2181091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32737\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"241\",\"id\":\"14929\",\"draft_team\":\"DET\",\"birthdate\":\"883198800\",\"name\":\"Okwara, Julian\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14448\",\"height\":\"77\",\"twitter_username\":\"julian_okwara\",\"sportsdata_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"team\":\"DET\",\"cbs_id\":\"2260688\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32743\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14930\",\"draft_team\":\"JAC\",\"name\":\"Hamilton, Davon\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"14714\",\"height\":\"76\",\"twitter_username\":\"dmhamilton53\",\"sportsdata_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"team\":\"JAC\",\"cbs_id\":\"2179811\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32747\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14931\",\"draft_team\":\"DEN\",\"birthdate\":\"874040400\",\"name\":\"Ojemudia, Michael\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"14711\",\"height\":\"73\",\"twitter_username\":\"GotMo_J\",\"sportsdata_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"team\":\"DEN\",\"cbs_id\":\"2179727\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"252\",\"id\":\"14932\",\"draft_team\":\"LAR\",\"name\":\"Lewis, Terrell\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"rotowire_id\":\"14390\",\"height\":\"77\",\"twitter_username\":\"_real24_\",\"sportsdata_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"team\":\"LAR\",\"cbs_id\":\"2252836\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32755\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"14933\",\"draft_team\":\"IND\",\"birthdate\":\"903934800\",\"name\":\"Blackmon, Julian\",\"draft_pick\":\"21\",\"college\":\"Utah\",\"rotowire_id\":\"14704\",\"height\":\"73\",\"twitter_username\":\"jumpmanjuice23\",\"sportsdata_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"team\":\"IND\",\"cbs_id\":\"2253091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32758\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14934\",\"draft_team\":\"CLE\",\"birthdate\":\"880261200\",\"name\":\"Elliott, Jordan\",\"draft_pick\":\"24\",\"college\":\"Missouri\",\"rotowire_id\":\"14353\",\"height\":\"76\",\"twitter_username\":\"bigj5k\",\"sportsdata_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"team\":\"CLE\",\"cbs_id\":\"2246110\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32759\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14935\",\"draft_team\":\"MIN\",\"birthdate\":\"904798800\",\"name\":\"Dantzler, Cameron\",\"draft_pick\":\"25\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14363\",\"height\":\"74\",\"twitter_username\":\"camdantzler3\",\"sportsdata_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"team\":\"MIN\",\"cbs_id\":\"2248633\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32761\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14936\",\"draft_team\":\"NEP\",\"birthdate\":\"871534800\",\"name\":\"Asiasi, Devin\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"14425\",\"height\":\"75\",\"twitter_username\":\"ASI2X\",\"sportsdata_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"team\":\"NEP\",\"cbs_id\":\"2260483\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32765\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14937\",\"draft_team\":\"DEN\",\"birthdate\":\"875163600\",\"name\":\"Agim, McTelvin\",\"draft_pick\":\"31\",\"college\":\"Arkansas\",\"rotowire_id\":\"14602\",\"height\":\"75\",\"twitter_username\":\"So_Splash\",\"sportsdata_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"team\":\"DEN\",\"cbs_id\":\"2240258\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32770\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14938\",\"draft_team\":\"LVR\",\"birthdate\":\"841986000\",\"name\":\"Muse, Tanner\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"14690\",\"height\":\"75\",\"twitter_username\":\"tanner_muse\",\"sportsdata_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"team\":\"LVR\",\"cbs_id\":\"2179227\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32771\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14939\",\"draft_team\":\"NEP\",\"birthdate\":\"924066000\",\"name\":\"Keene, Dalton\",\"draft_pick\":\"37\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14559\",\"height\":\"76\",\"twitter_username\":\"DaltonKeene18\",\"sportsdata_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"team\":\"NEP\",\"cbs_id\":\"2805113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32772\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"14940\",\"draft_team\":\"PIT\",\"birthdate\":\"870930000\",\"name\":\"Highsmith, Alex\",\"draft_pick\":\"38\",\"college\":\"North Carolina-Charlotte\",\"rotowire_id\":\"14724\",\"height\":\"76\",\"twitter_username\":\"highsmith34\",\"sportsdata_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"team\":\"PIT\",\"cbs_id\":\"2241393\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32773\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14941\",\"draft_team\":\"PHI\",\"birthdate\":\"902293200\",\"name\":\"Taylor, Davion\",\"draft_pick\":\"39\",\"college\":\"Colorado\",\"rotowire_id\":\"14751\",\"height\":\"74\",\"twitter_username\":\"daviontaylot\",\"sportsdata_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"team\":\"PHI\",\"cbs_id\":\"2962569\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32774\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14942\",\"draft_team\":\"LAR\",\"birthdate\":\"910846800\",\"name\":\"Burgess, Terrell\",\"draft_pick\":\"40\",\"college\":\"Utah\",\"rotowire_id\":\"14702\",\"height\":\"72\",\"twitter_username\":\"titaniumt98\",\"sportsdata_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"team\":\"LAR\",\"cbs_id\":\"2240499\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32777\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14943\",\"draft_team\":\"CIN\",\"birthdate\":\"874818000\",\"name\":\"Davis-Gaither, Akeem\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14661\",\"height\":\"74\",\"twitter_username\":\"AkeemDavis16\",\"sportsdata_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"team\":\"CIN\",\"cbs_id\":\"2182263\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32780\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14944\",\"draft_team\":\"NYG\",\"birthdate\":\"898578000\",\"name\":\"Holmes, Darney\",\"draft_pick\":\"4\",\"college\":\"UCLA\",\"rotowire_id\":\"14535\",\"height\":\"70\",\"twitter_username\":\"prowaydarnay\",\"sportsdata_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32783\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"14945\",\"draft_team\":\"CAR\",\"birthdate\":\"885186000\",\"name\":\"Pride, Troy\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14581\",\"height\":\"71\",\"twitter_username\":\"TroyPride18\",\"sportsdata_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"team\":\"CAR\",\"cbs_id\":\"2260689\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32784\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"335\",\"id\":\"14946\",\"draft_team\":\"ARI\",\"birthdate\":\"903848400\",\"name\":\"Fotu, Leki\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"14712\",\"height\":\"77\",\"twitter_username\":\"LekiFotu\",\"sportsdata_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"team\":\"ARI\",\"cbs_id\":\"2240504\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32787\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14947\",\"draft_team\":\"MIN\",\"birthdate\":\"878274000\",\"name\":\"Wonnum, D.J.\",\"draft_pick\":\"11\",\"college\":\"South Carolina\",\"rotowire_id\":\"14612\",\"height\":\"77\",\"twitter_username\":\"dwonnum\",\"sportsdata_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"team\":\"MIN\",\"cbs_id\":\"2252822\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32789\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14948\",\"draft_team\":\"ATL\",\"birthdate\":\"872744400\",\"name\":\"Walker, Mykal\",\"draft_pick\":\"13\",\"college\":\"Fresno State\",\"rotowire_id\":\"14754\",\"height\":\"75\",\"twitter_username\":\"MykalWalker3\",\"sportsdata_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"team\":\"ATL\",\"cbs_id\":\"2865637\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32793\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14949\",\"draft_team\":\"DAL\",\"birthdate\":\"860994000\",\"name\":\"Robinson, Reggie\",\"draft_pick\":\"17\",\"college\":\"Tulsa\",\"rotowire_id\":\"14708\",\"height\":\"73\",\"twitter_username\":\"RegRobII\",\"sportsdata_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32797\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14950\",\"draft_team\":\"PHI\",\"birthdate\":\"869806800\",\"name\":\"Wallace, K'Von\",\"draft_pick\":\"21\",\"college\":\"Clemson\",\"rotowire_id\":\"14686\",\"height\":\"71\",\"twitter_username\":\"KVonWallace\",\"sportsdata_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"team\":\"PHI\",\"cbs_id\":\"2239538\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32800\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"14951\",\"draft_team\":\"MIN\",\"birthdate\":\"916808400\",\"name\":\"Lynch, James\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"14499\",\"height\":\"76\",\"twitter_username\":\"JamesHusker38\",\"sportsdata_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"team\":\"MIN\",\"cbs_id\":\"2868531\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32801\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"308\",\"id\":\"14952\",\"draft_team\":\"ARI\",\"birthdate\":\"904194000\",\"name\":\"Lawrence, Rashard\",\"draft_pick\":\"25\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14717\",\"height\":\"74\",\"twitter_username\":\"Rashard_99\",\"sportsdata_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"team\":\"ARI\",\"cbs_id\":\"2223249\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32802\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14953\",\"draft_team\":\"MIN\",\"birthdate\":\"843022800\",\"name\":\"Dye, Troy\",\"draft_pick\":\"26\",\"college\":\"Oregon\",\"rotowire_id\":\"14740\",\"height\":\"76\",\"twitter_username\":\"tdye15dbtroy\",\"sportsdata_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"team\":\"MIN\",\"cbs_id\":\"2221826\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32804\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14954\",\"draft_team\":\"ATL\",\"birthdate\":\"872485200\",\"name\":\"Hawkins, Jaylinn\",\"draft_pick\":\"28\",\"college\":\"California\",\"rotowire_id\":\"14697\",\"height\":\"74\",\"twitter_username\":\"jhawko6\",\"sportsdata_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"team\":\"ATL\",\"cbs_id\":\"2180267\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32807\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"14955\",\"draft_team\":\"JAC\",\"birthdate\":\"923288400\",\"name\":\"Scott, Josiah\",\"draft_pick\":\"31\",\"college\":\"Michigan State\",\"rotowire_id\":\"14413\",\"height\":\"70\",\"twitter_username\":\"josiahscott7\",\"sportsdata_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"team\":\"JAC\",\"cbs_id\":\"2807092\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32808\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14956\",\"draft_team\":\"KCC\",\"birthdate\":\"853822800\",\"name\":\"Sneed, L'Jarius\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14688\",\"height\":\"73\",\"sportsdata_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"team\":\"KCC\",\"cbs_id\":\"2239881\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32809\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14957\",\"draft_team\":\"LVR\",\"birthdate\":\"899701200\",\"name\":\"Robertson, Amik\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14709\",\"height\":\"69\",\"twitter_username\":\"_youngtruth7\",\"sportsdata_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"team\":\"LVR\",\"cbs_id\":\"2816298\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32810\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14958\",\"draft_team\":\"JAC\",\"birthdate\":\"878014800\",\"name\":\"Quarterman, Shaquille\",\"draft_pick\":\"34\",\"college\":\"Miami\",\"rotowire_id\":\"14747\",\"height\":\"73\",\"sportsdata_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"team\":\"JAC\",\"cbs_id\":\"2221934\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32811\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"181\",\"id\":\"14959\",\"draft_team\":\"HOU\",\"birthdate\":\"832136400\",\"name\":\"Reid, John\",\"draft_pick\":\"35\",\"college\":\"Penn State\",\"rotowire_id\":\"14710\",\"height\":\"70\",\"twitter_username\":\"John_Doe_25\",\"sportsdata_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"team\":\"HOU\",\"cbs_id\":\"2186643\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32818\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14960\",\"draft_team\":\"SEA\",\"birthdate\":\"896763600\",\"name\":\"Robinson, Alton\",\"draft_pick\":\"2\",\"college\":\"Syracuse\",\"rotowire_id\":\"14727\",\"height\":\"76\",\"sportsdata_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"team\":\"SEA\",\"cbs_id\":\"2868213\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32822\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14961\",\"draft_team\":\"CAR\",\"name\":\"Robinson, Kenny\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"rotowire_id\":\"14787\",\"height\":\"74\",\"twitter_username\":\"krob2__\",\"sportsdata_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"team\":\"CAR\",\"cbs_id\":\"2835561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32825\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"268\",\"id\":\"14962\",\"draft_team\":\"CHI\",\"birthdate\":\"866178000\",\"name\":\"Gipson, Trevis\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"rotowire_id\":\"14680\",\"height\":\"76\",\"twitter_username\":\"trevisgipson\",\"sportsdata_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"team\":\"CHI\",\"cbs_id\":\"2181277\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32827\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14963\",\"draft_team\":\"JAC\",\"birthdate\":\"899269200\",\"name\":\"Thomas, Daniel\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"14687\",\"height\":\"71\",\"twitter_username\":\"gamechanger021\",\"sportsdata_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"team\":\"JAC\",\"cbs_id\":\"2241807\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32828\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14964\",\"draft_team\":\"NYJ\",\"birthdate\":\"863326800\",\"name\":\"Hall, Bryce\",\"draft_pick\":\"12\",\"college\":\"Virginia\",\"rotowire_id\":\"14445\",\"height\":\"73\",\"sportsdata_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"team\":\"NYJ\",\"cbs_id\":\"2251254\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32829\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14965\",\"draft_team\":\"NEP\",\"birthdate\":\"849934800\",\"name\":\"Rohrwasser, Justin\",\"draft_pick\":\"13\",\"college\":\"Marshall\",\"rotowire_id\":\"14822\",\"height\":\"75\",\"sportsdata_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"team\":\"NEP\",\"cbs_id\":\"2194734\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32832\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14966\",\"draft_team\":\"WAS\",\"birthdate\":\"881384400\",\"name\":\"Hudson, Khaleke\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"14480\",\"height\":\"72\",\"twitter_username\":\"KhalekeHudson\",\"sportsdata_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"team\":\"WAS\",\"cbs_id\":\"2260652\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32833\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14967\",\"draft_team\":\"CHI\",\"birthdate\":\"881816400\",\"name\":\"Vildor, Kindle\",\"draft_pick\":\"17\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14706\",\"height\":\"71\",\"twitter_username\":\"ThePremier20\",\"sportsdata_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"team\":\"CHI\",\"cbs_id\":\"2252448\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32834\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14968\",\"draft_team\":\"MIA\",\"birthdate\":\"902120400\",\"name\":\"Weaver, Curtis\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"14409\",\"height\":\"75\",\"twitter_username\":\"curtisweaver99\",\"sportsdata_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"team\":\"MIA\",\"cbs_id\":\"2257946\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32838\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14969\",\"draft_team\":\"PHI\",\"birthdate\":\"833518800\",\"name\":\"Hightower, John\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"rotowire_id\":\"14567\",\"height\":\"74\",\"sportsdata_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"team\":\"PHI\",\"cbs_id\":\"2969061\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32839\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14970\",\"draft_team\":\"MIN\",\"name\":\"Hand, Harrison\",\"draft_pick\":\"23\",\"college\":\"Temple\",\"rotowire_id\":\"14522\",\"height\":\"72\",\"twitter_username\":\"__harry22\",\"sportsdata_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"team\":\"MIN\",\"cbs_id\":\"2868561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32840\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14971\",\"draft_team\":\"BAL\",\"birthdate\":\"849675600\",\"name\":\"Washington, Broderick\",\"draft_pick\":\"24\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14720\",\"height\":\"75\",\"sportsdata_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"team\":\"BAL\",\"cbs_id\":\"2185746\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32841\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14972\",\"draft_team\":\"HOU\",\"name\":\"Coulter, Isaiah\",\"draft_pick\":\"25\",\"college\":\"Rhode Island\",\"rotowire_id\":\"14537\",\"height\":\"75\",\"sportsdata_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"team\":\"HOU\",\"cbs_id\":\"2830035\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32842\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14973\",\"draft_team\":\"DET\",\"birthdate\":\"893048400\",\"name\":\"Huntley, Jason\",\"draft_pick\":\"26\",\"college\":\"New Mexico State\",\"rotowire_id\":\"14796\",\"height\":\"69\",\"twitter_username\":\"thejasonhuntley\",\"sportsdata_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"team\":\"DET\",\"cbs_id\":\"2239939\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32843\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14974\",\"draft_team\":\"CHI\",\"birthdate\":\"878101200\",\"name\":\"Mooney, Darnell\",\"draft_pick\":\"27\",\"college\":\"Tulane\",\"rotowire_id\":\"14510\",\"height\":\"71\",\"twitter_username\":\"Darnell_M1\",\"sportsdata_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"team\":\"CHI\",\"cbs_id\":\"2240651\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32844\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"291\",\"id\":\"14975\",\"draft_team\":\"TEN\",\"birthdate\":\"861858000\",\"name\":\"Murchison, Larrell\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14718\",\"height\":\"75\",\"twitter_username\":\"Murchboy92\",\"sportsdata_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"team\":\"TEN\",\"cbs_id\":\"2865164\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32845\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14976\",\"draft_team\":\"GBP\",\"birthdate\":\"898059600\",\"name\":\"Martin, Kamal\",\"draft_pick\":\"29\",\"college\":\"Minnesota\",\"rotowire_id\":\"14385\",\"height\":\"75\",\"twitter_username\":\"KamalMartin6\",\"sportsdata_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"team\":\"GBP\",\"cbs_id\":\"2239765\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32846\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14977\",\"draft_team\":\"MIN\",\"birthdate\":\"865918800\",\"name\":\"Osborn, K.J.\",\"draft_pick\":\"30\",\"college\":\"Miami\",\"rotowire_id\":\"14641\",\"height\":\"72\",\"sportsdata_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"team\":\"MIN\",\"cbs_id\":\"2184383\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32847\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14978\",\"draft_team\":\"KCC\",\"birthdate\":\"881211600\",\"name\":\"Danna, Michael\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"14823\",\"height\":\"74\",\"twitter_username\":\"M_Danna4\",\"sportsdata_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"team\":\"KCC\",\"cbs_id\":\"2180090\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32848\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14979\",\"draft_team\":\"DEN\",\"birthdate\":\"840603600\",\"name\":\"Strnad, Justin\",\"draft_pick\":\"32\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14757\",\"height\":\"75\",\"twitter_username\":\"jsgarbs\",\"sportsdata_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"team\":\"DEN\",\"cbs_id\":\"2186413\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32852\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14980\",\"draft_team\":\"NYG\",\"birthdate\":\"891406800\",\"name\":\"Brown, Cam\",\"draft_pick\":\"4\",\"college\":\"Penn State\",\"rotowire_id\":\"14596\",\"height\":\"77\",\"sportsdata_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"team\":\"NYG\",\"cbs_id\":\"2251294\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32854\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14981\",\"draft_team\":\"CAR\",\"birthdate\":\"845614800\",\"name\":\"Roy, Bravvion\",\"draft_pick\":\"5\",\"college\":\"Baylor\",\"rotowire_id\":\"14824\",\"height\":\"73\",\"twitter_username\":\"brave_roy\",\"sportsdata_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"team\":\"CAR\",\"cbs_id\":\"2253081\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32856\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14982\",\"draft_team\":\"LAC\",\"birthdate\":\"874472400\",\"name\":\"Gilman, Alohi\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14521\",\"height\":\"71\",\"twitter_username\":\"alohigilman\",\"sportsdata_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"team\":\"LAC\",\"cbs_id\":\"2868542\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32858\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14983\",\"draft_team\":\"BUF\",\"birthdate\":\"855896400\",\"name\":\"Bass, Tyler\",\"draft_pick\":\"9\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14609\",\"height\":\"70\",\"twitter_username\":\"tbass_xvi\",\"sportsdata_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"team\":\"BUF\",\"cbs_id\":\"2188356\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32860\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14984\",\"draft_team\":\"SFO\",\"birthdate\":\"876978000\",\"name\":\"Woerner, Charlie\",\"draft_pick\":\"11\",\"college\":\"Georgia\",\"rotowire_id\":\"14608\",\"height\":\"77\",\"sportsdata_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"team\":\"SFO\",\"cbs_id\":\"2248629\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32861\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14985\",\"draft_team\":\"NYJ\",\"birthdate\":\"880347600\",\"name\":\"Mann, Braden\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14654\",\"height\":\"71\",\"twitter_username\":\"MannBraden\",\"sportsdata_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32863\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"14986\",\"draft_team\":\"IND\",\"birthdate\":\"853304400\",\"name\":\"Windsor, Robert\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14613\",\"height\":\"77\",\"twitter_username\":\"RobertWindsor54\",\"sportsdata_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"team\":\"IND\",\"cbs_id\":\"2186647\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32864\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14987\",\"draft_team\":\"TBB\",\"birthdate\":\"840690000\",\"name\":\"Davis, Khalil\",\"draft_pick\":\"15\",\"college\":\"Nebraska\",\"rotowire_id\":\"14682\",\"height\":\"74\",\"twitter_username\":\"khalildaish95\",\"sportsdata_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"team\":\"TBB\",\"cbs_id\":\"2179622\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32866\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14988\",\"draft_team\":\"PHI\",\"birthdate\":\"860475600\",\"name\":\"Bradley, Shaun\",\"draft_pick\":\"17\",\"college\":\"Temple\",\"rotowire_id\":\"14737\",\"height\":\"73\",\"twitter_username\":\"Sdot_Bradley5\",\"sportsdata_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"team\":\"PHI\",\"cbs_id\":\"2239597\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32867\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14989\",\"draft_team\":\"DET\",\"birthdate\":\"865054800\",\"name\":\"Penisini, John\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14719\",\"height\":\"74\",\"twitter_username\":\"Dub_jayy_boy\",\"sportsdata_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"team\":\"DET\",\"cbs_id\":\"2827536\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32868\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14990\",\"draft_team\":\"PIT\",\"birthdate\":\"909550800\",\"name\":\"Brooks, Antoine\",\"draft_pick\":\"19\",\"college\":\"Maryland\",\"rotowire_id\":\"14595\",\"height\":\"71\",\"twitter_username\":\"TwanDoee\",\"sportsdata_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32869\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14991\",\"draft_team\":\"LAR\",\"birthdate\":\"888987600\",\"name\":\"Fuller, Jordan\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"14698\",\"height\":\"74\",\"twitter_username\":\"j_fuller4\",\"sportsdata_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"team\":\"LAR\",\"cbs_id\":\"2260978\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32870\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14992\",\"draft_team\":\"PHI\",\"birthdate\":\"897368400\",\"name\":\"Watkins, Quez\",\"draft_pick\":\"21\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"14464\",\"height\":\"74\",\"twitter_username\":\"AdamSchefter\",\"sportsdata_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"team\":\"PHI\",\"cbs_id\":\"2262953\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32872\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14993\",\"draft_team\":\"ARI\",\"birthdate\":\"902811600\",\"name\":\"Weaver, Evan\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"14752\",\"height\":\"75\",\"twitter_username\":\"Weavin_it\",\"sportsdata_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"team\":\"ARI\",\"cbs_id\":\"2250836\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32874\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"248\",\"id\":\"14994\",\"draft_team\":\"NEP\",\"birthdate\":\"907390800\",\"name\":\"Maluia, Cassh\",\"draft_pick\":\"25\",\"college\":\"Wyoming\",\"rotowire_id\":\"14826\",\"height\":\"72\",\"twitter_username\":\"cassh7mula\",\"sportsdata_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"team\":\"NEP\",\"cbs_id\":\"2258320\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32875\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14995\",\"draft_team\":\"MIN\",\"birthdate\":\"885358800\",\"name\":\"Metellus, Josh\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"rotowire_id\":\"14479\",\"height\":\"72\",\"twitter_username\":\"NoExcuses_23\",\"sportsdata_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"team\":\"MIN\",\"cbs_id\":\"2260662\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32876\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14996\",\"draft_team\":\"JAC\",\"birthdate\":\"859957200\",\"name\":\"Davis, Tyler\",\"draft_pick\":\"27\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14827\",\"height\":\"76\",\"twitter_username\":\"Tyler_Davis9\",\"sportsdata_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"team\":\"JAC\",\"cbs_id\":\"2182811\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32881\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"14997\",\"draft_team\":\"IND\",\"birthdate\":\"884149200\",\"name\":\"Rodgers, Isaiah\",\"draft_pick\":\"32\",\"college\":\"Massachusetts\",\"rotowire_id\":\"14828\",\"height\":\"70\",\"twitter_username\":\"rodgers_isaiah\",\"sportsdata_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"team\":\"IND\",\"cbs_id\":\"2261492\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32882\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14998\",\"draft_team\":\"IND\",\"birthdate\":\"902379600\",\"name\":\"Patmon, Dezmon\",\"draft_pick\":\"33\",\"college\":\"Washington State\",\"rotowire_id\":\"14643\",\"height\":\"76\",\"twitter_username\":\"dadpat7\",\"sportsdata_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"team\":\"IND\",\"cbs_id\":\"2221990\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32883\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"226\",\"id\":\"14999\",\"draft_team\":\"IND\",\"birthdate\":\"835938000\",\"name\":\"Glasgow, Jordan\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"14799\",\"height\":\"73\",\"sportsdata_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"team\":\"IND\",\"cbs_id\":\"2185709\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32885\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15000\",\"draft_team\":\"CIN\",\"birthdate\":\"857710800\",\"name\":\"Bailey, Markus\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"rotowire_id\":\"14736\",\"height\":\"73\",\"twitter_username\":\"mb_boiler21\",\"sportsdata_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"team\":\"CIN\",\"cbs_id\":\"2183896\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32886\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"15001\",\"draft_team\":\"WAS\",\"birthdate\":\"922856400\",\"name\":\"Curl, Kamren\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"rotowire_id\":\"14381\",\"height\":\"74\",\"twitter_username\":\"KCurl_2\",\"sportsdata_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"team\":\"WAS\",\"cbs_id\":\"2866171\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32888\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"15002\",\"draft_team\":\"NYG\",\"birthdate\":\"869461200\",\"name\":\"Coughlin, Carter\",\"draft_pick\":\"4\",\"college\":\"Minnesota\",\"rotowire_id\":\"14580\",\"height\":\"76\",\"twitter_username\":\"Cmoe34\",\"sportsdata_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"team\":\"NYG\",\"cbs_id\":\"2239754\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32889\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15003\",\"draft_team\":\"BAL\",\"birthdate\":\"924498000\",\"name\":\"Stone, Geno\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"14474\",\"height\":\"71\",\"twitter_username\":\"GenoStone22\",\"sportsdata_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"team\":\"BAL\",\"cbs_id\":\"2867170\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32891\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"184\",\"id\":\"15004\",\"draft_team\":\"CAR\",\"birthdate\":\"896936400\",\"name\":\"Thomas-Oliver, Stantley\",\"draft_pick\":\"7\",\"college\":\"Florida International\",\"rotowire_id\":\"14707\",\"height\":\"74\",\"twitter_username\":\"__Alcatraz21\",\"sportsdata_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"team\":\"CAR\",\"cbs_id\":\"2262783\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32895\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15005\",\"draft_team\":\"MIN\",\"birthdate\":\"869547600\",\"name\":\"Willekes, Kenny\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"14732\",\"height\":\"76\",\"twitter_username\":\"kennyw97\",\"sportsdata_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"team\":\"MIN\",\"cbs_id\":\"2186438\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32898\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"15006\",\"draft_team\":\"ATL\",\"birthdate\":\"849762000\",\"name\":\"Hofrichter, Sterling\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"rotowire_id\":\"14653\",\"height\":\"69\",\"twitter_username\":\"shofrichter10\",\"sportsdata_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"team\":\"ATL\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32899\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"15007\",\"draft_team\":\"WAS\",\"birthdate\":\"870238800\",\"name\":\"Smith-Williams, James\",\"draft_pick\":\"15\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14729\",\"height\":\"75\",\"twitter_username\":\"jacsw3\",\"sportsdata_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"team\":\"WAS\",\"cbs_id\":\"2179368\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32901\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15008\",\"draft_team\":\"DAL\",\"birthdate\":\"848811600\",\"name\":\"DiNucci, Ben\",\"draft_pick\":\"17\",\"college\":\"James Madison\",\"rotowire_id\":\"14832\",\"height\":\"75\",\"twitter_username\":\"B_DiNucci6\",\"sportsdata_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"team\":\"DAL\",\"cbs_id\":\"2179411\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32902\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"15009\",\"draft_team\":\"PIT\",\"birthdate\":\"840690000\",\"name\":\"Davis, Carlos\",\"draft_pick\":\"18\",\"college\":\"Nebraska\",\"rotowire_id\":\"14681\",\"height\":\"74\",\"sportsdata_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"team\":\"PIT\",\"cbs_id\":\"2179621\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32903\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"247\",\"id\":\"15010\",\"draft_team\":\"PHI\",\"name\":\"Toohill, Casey\",\"draft_pick\":\"19\",\"college\":\"Stanford\",\"rotowire_id\":\"14753\",\"height\":\"76\",\"twitter_username\":\"CaseyToohill\",\"sportsdata_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"team\":\"PHI\",\"cbs_id\":\"2186841\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32904\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"232\",\"id\":\"15011\",\"draft_team\":\"LAR\",\"birthdate\":\"839480400\",\"name\":\"Johnston, Clay\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"rotowire_id\":\"14743\",\"height\":\"73\",\"twitter_username\":\"C_Johnston4\",\"sportsdata_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"team\":\"LAR\",\"cbs_id\":\"2189507\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32905\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"285\",\"id\":\"15012\",\"draft_team\":\"DET\",\"birthdate\":\"851922000\",\"name\":\"Cornell, Jashon\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"14833\",\"height\":\"75\",\"twitter_username\":\"JayRock_9\",\"sportsdata_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"team\":\"DET\",\"cbs_id\":\"2179802\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32906\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"15013\",\"draft_team\":\"GBP\",\"birthdate\":\"873954000\",\"name\":\"Scott, Vernon\",\"draft_pick\":\"22\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14779\",\"height\":\"74\",\"twitter_username\":\"OfficialVern_\",\"sportsdata_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"team\":\"GBP\",\"cbs_id\":\"2240340\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32907\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"15014\",\"draft_team\":\"KCC\",\"birthdate\":\"879051600\",\"name\":\"Keyes, Thakarius\",\"draft_pick\":\"23\",\"college\":\"Tulane\",\"rotowire_id\":\"14579\",\"height\":\"73\",\"twitter_username\":\"TzKeyes\",\"sportsdata_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32908\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15015\",\"draft_team\":\"NYG\",\"birthdate\":\"881125200\",\"name\":\"Brunson, T.J.\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"rotowire_id\":\"14834\",\"height\":\"73\",\"sportsdata_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"team\":\"NYG\",\"cbs_id\":\"2252794\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32909\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15016\",\"draft_team\":\"BUF\",\"birthdate\":\"849243600\",\"name\":\"Jackson, Dane\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14549\",\"height\":\"71\",\"twitter_username\":\"Djack11_\",\"sportsdata_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"team\":\"BUF\",\"cbs_id\":\"2179418\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32910\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15017\",\"draft_team\":\"NOS\",\"birthdate\":\"850626000\",\"name\":\"Stevens, Tommy\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14527\",\"height\":\"77\",\"sportsdata_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"team\":\"NOS\",\"cbs_id\":\"2179839\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32911\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15018\",\"draft_team\":\"TBB\",\"birthdate\":\"853736400\",\"name\":\"Russell, Chapelle\",\"draft_pick\":\"27\",\"college\":\"Temple\",\"rotowire_id\":\"14755\",\"height\":\"73\",\"twitter_username\":\"DeuceRussell36\",\"sportsdata_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"team\":\"TBB\",\"cbs_id\":\"2186632\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32912\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15019\",\"draft_team\":\"GBP\",\"birthdate\":\"933138000\",\"name\":\"Garvin, Jonathan\",\"draft_pick\":\"28\",\"college\":\"Miami\",\"rotowire_id\":\"14365\",\"height\":\"76\",\"sportsdata_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"team\":\"GBP\",\"cbs_id\":\"2804100\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32913\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"186\",\"id\":\"15020\",\"draft_team\":\"TEN\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Chris\",\"draft_pick\":\"29\",\"college\":\"Marshall\",\"rotowire_id\":\"14835\",\"height\":\"72\",\"sportsdata_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"team\":\"TEN\",\"cbs_id\":\"3679\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32915\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15021\",\"draft_team\":\"TBB\",\"birthdate\":\"891493200\",\"name\":\"Calais, Raymond\",\"draft_pick\":\"31\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"14625\",\"height\":\"69\",\"twitter_username\":\"king_calais\",\"sportsdata_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"team\":\"TBB\",\"cbs_id\":\"2252175\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32916\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15022\",\"draft_team\":\"MIA\",\"birthdate\":\"861426000\",\"name\":\"Perry, Malcolm\",\"draft_pick\":\"32\",\"college\":\"Navy\",\"rotowire_id\":\"14504\",\"height\":\"69\",\"sportsdata_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"team\":\"MIA\",\"cbs_id\":\"2251971\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32917\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15023\",\"draft_team\":\"NYG\",\"birthdate\":\"864018000\",\"name\":\"Williamson, Chris\",\"draft_pick\":\"33\",\"college\":\"Minnesota\",\"rotowire_id\":\"14836\",\"height\":\"72\",\"sportsdata_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"team\":\"NYG\",\"cbs_id\":\"2180451\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32918\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15024\",\"draft_team\":\"LAR\",\"birthdate\":\"874645200\",\"name\":\"Sloman, Sam\",\"draft_pick\":\"34\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14837\",\"height\":\"68\",\"twitter_username\":\"ssloman118\",\"sportsdata_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"team\":\"LAR\",\"cbs_id\":\"2240109\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32919\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15025\",\"draft_team\":\"MIN\",\"birthdate\":\"860043600\",\"name\":\"Cole, Brian\",\"draft_pick\":\"35\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14620\",\"height\":\"74\",\"sportsdata_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"team\":\"MIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32921\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"15026\",\"draft_team\":\"SEA\",\"birthdate\":\"849157200\",\"name\":\"Sullivan, Stephen\",\"draft_pick\":\"37\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14570\",\"height\":\"77\",\"twitter_username\":\"SJS_10\",\"sportsdata_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"team\":\"SEA\",\"cbs_id\":\"2223251\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32922\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15027\",\"draft_team\":\"DEN\",\"birthdate\":\"874731600\",\"name\":\"Cleveland, Tyrie\",\"draft_pick\":\"38\",\"college\":\"Florida\",\"rotowire_id\":\"14621\",\"height\":\"74\",\"sportsdata_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"team\":\"DEN\",\"cbs_id\":\"2248604\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32923\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15028\",\"draft_team\":\"DEN\",\"birthdate\":\"837061200\",\"name\":\"Tuszka, Derrek\",\"draft_pick\":\"40\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14731\",\"height\":\"77\",\"sportsdata_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"team\":\"DEN\",\"cbs_id\":\"2190767\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32924\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15029\",\"draft_team\":\"NYG\",\"birthdate\":\"858142800\",\"name\":\"Crowder, Tae\",\"draft_pick\":\"41\",\"college\":\"Georgia\",\"rotowire_id\":\"14839\",\"height\":\"75\",\"twitter_username\":\"TaeCrowder\",\"sportsdata_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"team\":\"NYG\",\"cbs_id\":\"2180461\"},{\"draft_year\":\"2018\",\"birthdate\":\"826174800\",\"draft_team\":\"FA\",\"stats_id\":\"31744\",\"position\":\"LB\",\"name\":\"Gates, DeMarquis\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13942\",\"weight\":\"221\",\"sportsdata_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"id\":\"15030\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32358\",\"position\":\"PN\",\"name\":\"Fox, Jack\",\"college\":\"Rice\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13715\",\"jersey\":\"6\",\"weight\":\"224\",\"sportsdata_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"id\":\"15032\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"746773200\",\"draft_team\":\"FA\",\"stats_id\":\"32664\",\"position\":\"WR\",\"name\":\"Begelton, Reggie\",\"college\":\"Lamar\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14472\",\"weight\":\"200\",\"sportsdata_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"id\":\"15033\",\"team\":\"GBP\",\"cbs_id\":\"3157671\"},{\"draft_year\":\"2020\",\"birthdate\":\"890974800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33109\",\"position\":\"WR\",\"name\":\"Callaway, Marquez\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14556\",\"weight\":\"204\",\"id\":\"15034\",\"team\":\"NOS\",\"cbs_id\":\"2247505\"},{\"draft_year\":\"2018\",\"birthdate\":\"813819600\",\"draft_team\":\"FA\",\"stats_id\":\"31803\",\"position\":\"QB\",\"name\":\"Wolford, John\",\"college\":\"Wake Forest\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13403\",\"jersey\":\"9\",\"weight\":\"200\",\"sportsdata_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"id\":\"15035\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"843541200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Smith, J'mar\",\"college\":\"Louisiana Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14845\",\"weight\":\"218\",\"id\":\"15036\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"876114000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32946\",\"position\":\"WR\",\"name\":\"Lipscomb, Kalija\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14640\",\"weight\":\"200\",\"sportsdata_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"id\":\"15037\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"birthdate\":\"850626000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33132\",\"position\":\"WR\",\"name\":\"Bayless, Omar\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14585\",\"weight\":\"207\",\"sportsdata_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"id\":\"15038\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"895726800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33095\",\"position\":\"WR\",\"name\":\"Parker, Aaron\",\"college\":\"Rhode Island\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14642\",\"weight\":\"191\",\"sportsdata_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"id\":\"15039\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Williams, Ty'Son\",\"college\":\"Brigham Young\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14404\",\"weight\":\"220\",\"id\":\"15040\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"872053200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33329\",\"position\":\"WR\",\"name\":\"Cager, Lawrence\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14597\",\"weight\":\"220\",\"sportsdata_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"id\":\"15041\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"birthdate\":\"875595600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33088\",\"position\":\"RB\",\"name\":\"Ward, Jonathan\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"15106\",\"weight\":\"202\",\"sportsdata_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"id\":\"15042\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"838702800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33017\",\"position\":\"WR\",\"name\":\"Hastings, Will\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14762\",\"weight\":\"174\",\"sportsdata_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"id\":\"15043\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33345\",\"position\":\"RB\",\"name\":\"Scarlett, Cameron\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14887\",\"weight\":\"216\",\"sportsdata_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"id\":\"15044\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"birthdate\":\"880002000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32994\",\"position\":\"TE\",\"name\":\"Breeland, Jacob\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14628\",\"weight\":\"250\",\"sportsdata_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"id\":\"15045\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852440400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33242\",\"position\":\"WR\",\"name\":\"Merritt, Kirk\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14861\",\"weight\":\"210\",\"sportsdata_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"id\":\"15046\",\"team\":\"MIA\"},{\"draft_year\":\"2016\",\"birthdate\":\"719730000\",\"draft_team\":\"FA\",\"stats_id\":\"29925\",\"position\":\"CB\",\"name\":\"Roberson, Tre\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"11506\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"id\":\"15047\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33330\",\"position\":\"WR\",\"name\":\"Campbell, George\",\"college\":\"West Virginia\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14944\",\"weight\":\"183\",\"sportsdata_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"id\":\"15048\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33108\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15049\",\"draft_team\":\"FA\",\"birthdate\":\"888469200\",\"name\":\"Bachie, Joe\",\"college\":\"Michigan State\",\"rotowire_id\":\"14735\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"team\":\"NOS\"},{\"draft_year\":\"2020\",\"birthdate\":\"890802000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33096\",\"position\":\"TE\",\"name\":\"Taumoepeau, Charlie\",\"college\":\"Portland State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14633\",\"weight\":\"245\",\"sportsdata_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"id\":\"15050\",\"team\":\"DAL\"}]},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849348, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.141461, namelookup = 0.00028, 
+    connect = 0.000288, pretransfer = 0.000686, starttransfer = 1.339252, 
+    total = 1.482241)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-f5d34a.R b/tests/testthat/api.myfantasyleague.com/2020/export-f5d34a.R
new file mode 100644
index 00000000..c81795c2
--- /dev/null
+++ b/tests/testthat/api.myfantasyleague.com/2020/export-f5d34a.R
@@ -0,0 +1,25 @@
+structure(list(url = "https://www61.myfantasyleague.com/2020/export?TYPE=players&L=54040&DETAILS=1&JSON=1", 
+    status_code = 200L, headers = structure(list(date = "Mon, 27 Jul 2020 11:29:15 GMT", 
+        server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+        vary = "Accept-Encoding", `content-encoding` = "gzip", 
+        `content-type` = "application/json; charset=utf-8", `transfer-encoding` = "chunked"), class = c("insensitive", 
+    "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:15 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            location = "https://www61.myfantasyleague.com/2020/export?TYPE=players&L=54040&DETAILS=1&JSON=1", 
+            `content-length` = "0", targethost = "www70"), class = c("insensitive", 
+        "list"))), list(status = 200L, version = "HTTP/1.1", 
+        headers = structure(list(date = "Mon, 27 Jul 2020 11:29:15 GMT", 
+            server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1", 
+            vary = "Accept-Encoding", `content-encoding` = "gzip", 
+            `content-type` = "application/json; charset=utf-8", 
+            `transfer-encoding` = "chunked"), class = c("insensitive", 
+        "list")))), cookies = structure(list(domain = logical(0), 
+        flag = logical(0), path = logical(0), secure = logical(0), 
+        expiration = structure(numeric(0), class = c("POSIXct", 
+        "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"), 
+    content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"-1\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"stats_id\":\"2\",\"draft_team\":\"BUF\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"twitter_username\":\"buffalobills\",\"id\":\"0501\",\"team\":\"BUF\",\"fleaflicker_id\":\"2331\",\"cbs_id\":\"409\"},{\"draft_year\":\"1970\",\"stats_id\":\"11\",\"draft_team\":\"IND\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"twitter_username\":\"nflcolts\",\"id\":\"0502\",\"team\":\"IND\",\"fleaflicker_id\":\"2341\",\"cbs_id\":\"402\"},{\"draft_year\":\"1970\",\"stats_id\":\"15\",\"draft_team\":\"MIA\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"twitter_username\":\"MiamiDolphins\",\"id\":\"0503\",\"team\":\"MIA\",\"fleaflicker_id\":\"2344\",\"cbs_id\":\"404\"},{\"draft_year\":\"1970\",\"stats_id\":\"17\",\"draft_team\":\"NEP\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"twitter_username\":\"patriots\",\"id\":\"0504\",\"team\":\"NEP\",\"fleaflicker_id\":\"2346\",\"cbs_id\":\"406\"},{\"draft_year\":\"1970\",\"stats_id\":\"20\",\"draft_team\":\"NYJ\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"nyjets\",\"id\":\"0505\",\"team\":\"NYJ\",\"fleaflicker_id\":\"2349\",\"cbs_id\":\"410\"},{\"draft_year\":\"1970\",\"stats_id\":\"4\",\"draft_team\":\"CIN\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"twitter_username\":\"Bengals\",\"id\":\"0506\",\"team\":\"CIN\",\"fleaflicker_id\":\"2334\",\"cbs_id\":\"426\"},{\"draft_year\":\"1970\",\"stats_id\":\"5\",\"draft_team\":\"CLE\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"twitter_username\":\"OfficialBrowns\",\"id\":\"0507\",\"team\":\"CLE\",\"fleaflicker_id\":\"2335\",\"cbs_id\":\"419\"},{\"draft_year\":\"1970\",\"stats_id\":\"10\",\"draft_team\":\"TEN\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"twitter_username\":\"tennesseetitans\",\"id\":\"0508\",\"team\":\"TEN\",\"fleaflicker_id\":\"2358\",\"cbs_id\":\"431\"},{\"draft_year\":\"1970\",\"stats_id\":\"30\",\"draft_team\":\"JAC\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"twitter_username\":\"jaguarsinsider\",\"id\":\"0509\",\"team\":\"JAC\",\"fleaflicker_id\":\"2342\",\"cbs_id\":\"422\"},{\"draft_year\":\"1970\",\"stats_id\":\"23\",\"draft_team\":\"PIT\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"twitter_username\":\"steelers\",\"id\":\"0510\",\"team\":\"PIT\",\"fleaflicker_id\":\"2352\",\"cbs_id\":\"413\"},{\"draft_year\":\"1970\",\"stats_id\":\"7\",\"draft_team\":\"DEN\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"twitter_username\":\"DenverBroncos\",\"id\":\"0511\",\"team\":\"DEN\",\"fleaflicker_id\":\"2337\",\"cbs_id\":\"428\"},{\"draft_year\":\"1970\",\"stats_id\":\"12\",\"draft_team\":\"KCC\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"twitter_username\":\"kcchiefs\",\"id\":\"0512\",\"team\":\"KCC\",\"fleaflicker_id\":\"2343\",\"cbs_id\":\"403\"},{\"draft_year\":\"1970\",\"stats_id\":\"13\",\"draft_team\":\"OAK\",\"position\":\"Def\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"twitter_username\":\"raiders\",\"id\":\"0513\",\"team\":\"LVR\",\"fleaflicker_id\":\"2350\",\"cbs_id\":\"424\"},{\"draft_year\":\"1970\",\"stats_id\":\"24\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"chargers\",\"id\":\"0514\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"stats_id\":\"26\",\"draft_team\":\"SEA\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"twitter_username\":\"seahawks\",\"id\":\"0515\",\"team\":\"SEA\",\"fleaflicker_id\":\"2354\",\"cbs_id\":\"416\"},{\"draft_year\":\"1970\",\"stats_id\":\"6\",\"draft_team\":\"DAL\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"twitter_username\":\"dallascowboys\",\"id\":\"0516\",\"team\":\"DAL\",\"fleaflicker_id\":\"2336\",\"cbs_id\":\"427\"},{\"draft_year\":\"1970\",\"stats_id\":\"19\",\"draft_team\":\"NYG\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"giants\",\"id\":\"0517\",\"team\":\"NYG\",\"fleaflicker_id\":\"2348\",\"cbs_id\":\"408\"},{\"draft_year\":\"1970\",\"stats_id\":\"21\",\"draft_team\":\"PHI\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"twitter_username\":\"Eagles\",\"id\":\"0518\",\"team\":\"PHI\",\"fleaflicker_id\":\"2351\",\"cbs_id\":\"411\"},{\"draft_year\":\"1970\",\"stats_id\":\"22\",\"draft_team\":\"ARI\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"twitter_username\":\"AZCardinals\",\"id\":\"0519\",\"team\":\"ARI\",\"fleaflicker_id\":\"2328\",\"cbs_id\":\"412\"},{\"draft_year\":\"1970\",\"stats_id\":\"28\",\"draft_team\":\"WAS\",\"position\":\"Def\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"twitter_username\":\"Redskins\",\"id\":\"0520\",\"team\":\"WAS\",\"fleaflicker_id\":\"2359\",\"cbs_id\":\"418\"},{\"draft_year\":\"1970\",\"stats_id\":\"3\",\"draft_team\":\"CHI\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"twitter_username\":\"ChicagoBears\",\"id\":\"0521\",\"team\":\"CHI\",\"fleaflicker_id\":\"2333\",\"cbs_id\":\"421\"},{\"draft_year\":\"1970\",\"stats_id\":\"8\",\"draft_team\":\"DET\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"twitter_username\":\"detroitlionsnfl\",\"id\":\"0522\",\"team\":\"DET\",\"fleaflicker_id\":\"2338\",\"cbs_id\":\"429\"},{\"draft_year\":\"1970\",\"stats_id\":\"9\",\"draft_team\":\"GBP\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"packers\",\"id\":\"0523\",\"team\":\"GBP\",\"fleaflicker_id\":\"2339\",\"cbs_id\":\"430\"},{\"draft_year\":\"1970\",\"stats_id\":\"16\",\"draft_team\":\"MIN\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"twitter_username\":\"Vikings\",\"id\":\"0524\",\"team\":\"MIN\",\"fleaflicker_id\":\"2345\",\"cbs_id\":\"405\"},{\"draft_year\":\"1970\",\"stats_id\":\"27\",\"draft_team\":\"TBB\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"TBBuccaneers\",\"id\":\"0525\",\"team\":\"TBB\",\"fleaflicker_id\":\"2357\",\"cbs_id\":\"417\"},{\"draft_year\":\"1970\",\"stats_id\":\"1\",\"draft_team\":\"ATL\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"twitter_username\":\"AtlantaFalcons\",\"id\":\"0526\",\"team\":\"ATL\",\"fleaflicker_id\":\"2329\",\"cbs_id\":\"401\"},{\"draft_year\":\"1970\",\"stats_id\":\"29\",\"draft_team\":\"CAR\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"twitter_username\":\"Panthers\",\"id\":\"0527\",\"team\":\"CAR\",\"fleaflicker_id\":\"2332\",\"cbs_id\":\"420\"},{\"draft_year\":\"1970\",\"stats_id\":\"14\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"STLouisRams\",\"id\":\"0528\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"stats_id\":\"18\",\"draft_team\":\"NOS\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"twitter_username\":\"saints\",\"id\":\"0529\",\"team\":\"NOS\",\"fleaflicker_id\":\"2347\",\"cbs_id\":\"407\"},{\"draft_year\":\"1970\",\"stats_id\":\"25\",\"draft_team\":\"SFO\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"twitter_username\":\"49ers\",\"id\":\"0530\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"stats_id\":\"33\",\"draft_team\":\"BAL\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"twitter_username\":\"ravens\",\"id\":\"0531\",\"team\":\"BAL\",\"fleaflicker_id\":\"2330\",\"cbs_id\":\"425\"},{\"draft_year\":\"1970\",\"stats_id\":\"34\",\"draft_team\":\"HOU\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"twitter_username\":\"houstontexans\",\"id\":\"0532\",\"team\":\"HOU\",\"fleaflicker_id\":\"2340\",\"cbs_id\":\"432\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"Redskins, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 1.01\",\"id\":\"0800\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 1.03\",\"id\":\"0801\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 1.04\",\"id\":\"0802\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 1.05\",\"id\":\"0803\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 1.11\",\"id\":\"0804\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 1.14\",\"id\":\"0805\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.01\",\"id\":\"0806\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.03\",\"id\":\"0807\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.04\",\"id\":\"0808\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.06\",\"id\":\"0809\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.08\",\"id\":\"0810\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.10\",\"id\":\"0811\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.12\",\"id\":\"0812\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.13\",\"id\":\"0813\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 2.14\",\"id\":\"0814\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 3.01\",\"id\":\"0815\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 3.03\",\"id\":\"0816\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 3.04\",\"id\":\"0817\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 3.07\",\"id\":\"0818\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 3.11\",\"id\":\"0819\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 3.13\",\"id\":\"0820\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 3.14\",\"id\":\"0821\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 4.01\",\"id\":\"0822\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 4.03\",\"id\":\"0823\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 4.04\",\"id\":\"0824\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 4.06\",\"id\":\"0825\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 4.07\",\"id\":\"0826\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 4.11\",\"id\":\"0827\",\"team\":\"FA\"},{\"position\":\"XX\",\"name\":\"2020 Pick, 4.13\",\"id\":\"0828\",\"team\":\"FA\"},{\"draft_year\":\"1994\",\"stats_id\":\"39685\",\"draft_team\":\"NYJ\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"twitter_username\":\"PeteCarroll\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"draft_team\":\"FA\",\"birthdate\":\"94366800\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"height\":\"72\",\"rotowire_id\":\"395\",\"jersey\":\"4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"twitter_username\":\"aVinatieri4\",\"team\":\"FA\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"IND\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"TBB\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"FA\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"FA\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"FA\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"LVR\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"FA\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"IND\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"FA\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"WAS\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"20\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"NYJ\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"2\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"FA\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"FA\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"FA\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"24\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"TEN\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"FA\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"FA\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"FA\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"FA\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"twitter_username\":\"CoachTomlin\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"26\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"WAS\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"FA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"CHI\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"SEA\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"FA\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"FA\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"fleaflicker_id\":\"4848\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"FA\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"2\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"FA\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"KCC\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"CB\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"FA\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"BAL\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"NYJ\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"FA\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"fleaflicker_id\":\"5372\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"FA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"FA\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"BUF\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"FA\",\"cbs_id\":\"519042\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"FA\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"NOS\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"FA\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"FA\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"FA\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"4\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"FA\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"9\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"CAR\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"DET\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"NEP\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"FA\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"CAR\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"DAL\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"FA\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"CIN\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"FA\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"BAL\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"FA\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"FA\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"NYG\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"TBB\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"98\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"LAC\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"FA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"FA\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"10\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"NOS\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"8\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"CHI\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DE\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"72\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"JAC\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"FA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"FA*\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"fleaflicker_id\":\"6799\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"FA\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"FA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"FA\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"FA\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"FA\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"NYJ\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"FA\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"42\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"CLE\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"FA\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"twitter_username\":\"RiverboatRonHC\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"99\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"CLE\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"LVR\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"FA\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"LB\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"58\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"CHI\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"NEP\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"aldonsmith/2495487\",\"rotoworld_id\":\"6477\",\"stats_id\":\"24794\",\"position\":\"DE\",\"stats_global_id\":\"463434\",\"espn_id\":\"13988\",\"weight\":\"265\",\"id\":\"10274\",\"birthdate\":\"628405200\",\"draft_team\":\"SFO\",\"name\":\"Smith, Aldon\",\"draft_pick\":\"7\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7446\",\"jersey\":\"99\",\"twitter_username\":\"AldonSmith\",\"sportsdata_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"team\":\"DAL\",\"cbs_id\":\"1630791\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"99\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"DE\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"FA\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"HOU\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"DAL\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"FA\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"FA\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"FA\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"FA\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"DEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"FA\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"80\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"FA\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"34\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"BUF\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"FA\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"NYG\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"FA\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"FA\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"FA\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"FA\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"51\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"FA\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"DAL\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"FA\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"BUF\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"LAC\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"CIN\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"7\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"CHI\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"FA\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"FA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"NEP\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"FA\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"12\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"SFO\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"fleaflicker_id\":\"8577\",\"birthdate\":\"609570000\",\"draft_team\":\"SDC\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"FA\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"DAL\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"55\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"SEA\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"FA\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"FA\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"27\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"FA\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"26\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"FA\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"fleaflicker_id\":\"8472\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"BAL\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"FA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"32\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"FA\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"FA\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"FA\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"LVR\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"FA\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"FA\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"96\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"FA\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"59\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"CAR\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"FA\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"24\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"BUF\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DE\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"95\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"TEN\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"4\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"DAL\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"FA\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"28\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NYG\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"NYG\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"LVR\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"8\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"CLE\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"FA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"10\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"FA\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"FA\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"FA\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"39\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"CHI\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"FA\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"twitter_username\":\"BruceArians\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"TEN\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"fleaflicker_id\":\"9009\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"FA\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"BUF\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"FA\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"NYJ\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"7\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"JAC\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"FA\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"25\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"JAC\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"FA\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"NYJ\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"FA\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"10\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"FA\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"10\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"ARI\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"FA\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"11\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"PHI\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"86\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"FA\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"85\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"JAC\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"83\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"NYG\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"97\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"FA\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"FA\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"NOS\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DE\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"LVR\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"FA\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"FA\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"77\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"CHI\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"FA\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"FA\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"51\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"CHI\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"47\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"NOS\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"21\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"DET\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"29\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"IND\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"26\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"FA\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"8\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"SFO\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"FA\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"FA\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"FA\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"23\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"PHI\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"8\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"DET\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"FA\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"21\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"DET\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"FA\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"53\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"BUF\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"SEA\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"SEA\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DEN\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"85\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DT\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"FA\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"DET\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"S\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"FA\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"88\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CHI\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"FA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"FA\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"ATL\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"FA\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"SEA\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"FA\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"ATL\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"23\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"PHI\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"FA\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"DEN\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"FA\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"FA\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"NYJ\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"0\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"JAC\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"LVR\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"NEP\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"FA\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"HOU\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"FA\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"HOU\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"CAR\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"FA\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"LVR\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"WAS\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"34\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"SEA\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"5\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"FA*\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"FA\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"11\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"NEP\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"12\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"HOU\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"FA\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"FA\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"FA\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"PIT\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"IND\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"IND\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"FA*\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"JAC\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"93\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"HOU\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"PIT\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"PIT\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"MIA\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"51\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"21\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"FA\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"WAS\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"DAL\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"CB\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"LVR\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"WAS\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"2\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"ATL\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"S\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"GBP\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"FA\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"FA\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"28\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"82\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"WAS\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"HOU\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"78\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"LB\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"91\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"JAC\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"FA\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"FA\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DT\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"FA\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"NYJ\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"CB\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"57\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"WAS\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"LVR\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"96\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"FA\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"NYJ\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"CAR\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"ARI\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"NYJ\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"NYJ\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"CLE\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, T.J.\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"IND\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"91\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"NEP\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DE\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"FA\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"FA\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"FA\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"5\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"FA\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"16\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"FA\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chandlercatanzaro/2550325\",\"rotoworld_id\":\"10045\",\"stats_id\":\"28103\",\"position\":\"PK\",\"stats_global_id\":\"522233\",\"espn_id\":\"16976\",\"weight\":\"200\",\"id\":\"11960\",\"draft_team\":\"FA\",\"birthdate\":\"667544400\",\"name\":\"Catanzaro, Chandler\",\"college\":\"Clemson\",\"rotowire_id\":\"9845\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"team\":\"NYG\",\"cbs_id\":\"2130276\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"TEN\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"FA\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"FA\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DT\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"CAR\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"FA\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"FA\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"0\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"DEN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"NEP\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"FA\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"FA\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"FA\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"3\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"NOS\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"LVR\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"ATL\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"DEN\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"29\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"27\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"FA\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"HOU\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"FA\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"13\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"LVR\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"DAL\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"FA\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"BUF\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"13\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"SEA\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"NYJ\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"17\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"GBP\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"83\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"FA\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"DEN\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"FA\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"FA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"DAL\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"DE\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"ATL\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"NOS\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"DE\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"WAS\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"92\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"DET\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"FA\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DE\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"ARI\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"LB\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"TEN\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"FA\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"SFO\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, A.J.\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"FA\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"FA\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"22\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"CIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"CLE\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"ATL\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NOS\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"LVR\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"31\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"MIA\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"LVR\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"S\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"21\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"WAS\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"NYG\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"97\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"HOU\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"FA\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"TEN\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DT\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"JAC\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"NOS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"FA\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"DET\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"28\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"NOS\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DE\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"95\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"DEN\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"FA\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10605\",\"stats_id\":\"28620\",\"position\":\"LB\",\"stats_global_id\":\"845648\",\"espn_id\":\"3137087\",\"weight\":\"245\",\"id\":\"12369\",\"birthdate\":\"698821200\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Edmond\",\"draft_pick\":\"15\",\"college\":\"Newberry\",\"rotowire_id\":\"10497\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"AAP_30\",\"sportsdata_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"team\":\"ATL\",\"cbs_id\":\"2174218\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"FA\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"27\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"DET\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"FA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"FA\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"LVR\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"HOU\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"FA\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"CAR\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"GBP\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"LVR\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"SEA\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"NEP\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"CAR\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"ATL\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"51\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NEP\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"TEN\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"LAC\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"0\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"PIT\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"FA\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"FA\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"6\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DEN\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"FA\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"FA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"LVR\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"NYJ\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"MIA\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"FA\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"FA\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"WAS\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"WAS\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"ATL\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"NYG\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"NYJ\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"81\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"MIN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"12\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"CAR\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"DET\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"FA\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"CIN\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"CLE\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"81\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"DEN\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"MIA\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"IND\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"DE\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"MIA\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"MIN\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"LAR\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CLE\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"NYG\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"DET\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"FA\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"FA\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"CIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"WAS\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"CAR\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"S\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"CLE\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"CIN\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"27\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"DET\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"LAR\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"CHI\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"BUF\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"TEN\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DE\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"51\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"WAS\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"FA\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"NYG\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"FA\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"LVR\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"LVR\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"S\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"JAC\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"NYJ\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"ARI\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"DAL\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"LAC\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"NYG\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"79\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PHI\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"53\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"JAC\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"96\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"IND\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"HOU\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"CLE\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"LVR\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ARI\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"64\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"S\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CAR\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"CB\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"TBB\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"SFO\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"NYG\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"FA\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"99\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"BUF\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DT\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"36\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"CIN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"CHI\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"CIN\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"FA\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"SDC\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"PHI\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"CLE\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"CHI\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"FA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"FA\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"draft_team\":\"TBB\",\"birthdate\":\"751611600\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"NEP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"34\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"PIT\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"16\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"CHI\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"MIA\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"DAL\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"MIA\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"52\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"MIA\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"IND\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"34\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"PHI\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"BUF\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"CAR\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"MIA\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"BUF\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"SFO\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"KCC\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"FA\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"FA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"DAL\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"LVR\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"LVR\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"FA\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"NOS\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"FA\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"CAR\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"FA\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"CHI\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"93\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"DEN\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"MIN\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"LVR\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"FA\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"FA\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"KCC\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LVR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"SFO\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"FA\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"FA\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"NYJ\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"IND\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"FA\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"NYG\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"FA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"FA\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"WAS\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"FA\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"JAC\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"BUF\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"IND\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"NYG\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"LVR\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"JAC\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"CIN\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"FA\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"FA\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"FA\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"KCC\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"TBB\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"IND\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"MIA\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"PIT\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"PIT\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"NYJ\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"FA\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"LVR\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"KCC\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"HOU\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"TBB\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"MIA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"KCC\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"90\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"ATL\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"ATL\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"FA\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"75\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"NYJ\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DT\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DT\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"93\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"PIT\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"GBP\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"TBB\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"MIA\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"PHI\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"SEA\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"LAC\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"NYJ\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"PHI\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"FA\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"FA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"87\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"MIA\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"NYJ\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"FA\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"JAC\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"NEP\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"MIA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"IND\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"PHI\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"FA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"FA\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"MIN\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"FA\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"CIN\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"CB\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"S\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"NYJ\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"WR\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"FA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"LVR\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"48\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"CHI\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DE\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"FA\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"BUF\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DE\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"HOU\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"MIA\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"DET\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DE\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"GBP\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"NOS\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"DET\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"MIA\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"KCC\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"RB\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"NOS\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"FA\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"FA\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"CLE\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"PIT\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"MIN\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"FA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, P.J.\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"5\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"CAR\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"LVR\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DE\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"ARI\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"FA\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"FA\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"ATL\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"FA\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"CLE\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"FA\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"FA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"NYJ\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"NYJ\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"S\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"45\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"GBP\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"FA\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"DET\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"14\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"BUF\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"CLE\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"CHI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"LB\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"TEN\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"MIA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"PIT\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"NYJ\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"PHI\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"WAS\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"DET\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"LAR\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"MIA\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"SFO\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"14\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"FA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"BUF\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"LVR\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"BUF\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"WAS\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"CLE\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"BAL\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"WAS\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"FA\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"757573200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"ATL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"LVR\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"LVR\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"36\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"JAC\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"LVR\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"97\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"KCC\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"TBB\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"LVR\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"CLE\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"47\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"CB\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"NYG\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"DEN\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"LVR\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"CB\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SFO\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"37\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"DEN\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"CIN\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"CLE\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"DET\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"JAC\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"LB\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"CB\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"34\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"WAS\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"TE\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"ARI\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"FA\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DT\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"FA\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"49\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"NYJ\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"HOU\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"FA\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"ATL\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"HOU\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"SFO\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"CAR\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"birthdate\":\"698907600\",\"draft_team\":\"FA\",\"stats_id\":\"30711\",\"position\":\"PN\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"11829\",\"weight\":\"194\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"id\":\"13848\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"FA\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"6\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"ATL\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"FA\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"BUF\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"JAC\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"WAS\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"CAR\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"92\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"BUF\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"TEN\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"FA\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"NYJ\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"CIN\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"PHI\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13507\",\"stats_id\":\"31314\",\"position\":\"CB\",\"stats_global_id\":\"822378\",\"weight\":\"189\",\"id\":\"13928\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Nichols, Deatrick\",\"college\":\"South Florida\",\"rotowire_id\":\"12758\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"team\":\"NOS\",\"cbs_id\":\"2926507\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"KCC\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"MIA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"NOS\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"CHI\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"NYG\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"FA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"TEN\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"MIA\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DE\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"CLE\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"NYG\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"BUF\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"DET\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"DAL\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"LVR\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"GBP\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"FA\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"HOU\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"40\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"23\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"CIN\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"NYJ\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"CAR\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"38\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"DET\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"GBP\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"FA\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"ARI\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"FA\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"CIN\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"FA\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"NOS\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"PIT\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"MIA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"89\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"LVR\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"MIN\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"birthdate\":\"873608400\",\"draft_team\":\"FA\",\"stats_id\":\"32469\",\"position\":\"WR\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"stats_global_id\":\"866112\",\"height\":\"72\",\"rotowire_id\":\"13877\",\"jersey\":\"8\",\"weight\":\"205\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"id\":\"14131\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"FA\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"ARI\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"FA\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"WAS\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"stats_id\":\"31858\",\"position\":\"DE\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"LVR\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"DAL\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"97\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"PHI\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"stats_id\":\"31835\",\"position\":\"DE\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"stats_id\":\"31903\",\"position\":\"DE\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"GBP\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"BAL\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"FA\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"TEN\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"NYG\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"stats_id\":\"31940\",\"position\":\"S\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"LVR\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"LVR\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"draft_team\":\"FA\",\"stats_id\":\"32368\",\"position\":\"RB\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"stats_global_id\":\"868331\",\"height\":\"72\",\"rotowire_id\":\"13549\",\"jersey\":\"30\",\"weight\":\"205\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"id\":\"14192\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"birthdate\":\"674283600\",\"draft_team\":\"FA\",\"stats_id\":\"31822\",\"position\":\"RB\",\"name\":\"Wade, Christian\",\"stats_global_id\":\"1164428\",\"height\":\"67\",\"rotowire_id\":\"13930\",\"jersey\":\"45\",\"weight\":\"185\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"id\":\"14194\",\"team\":\"BUF\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"draft_team\":\"GBP\",\"draft_pick\":\"21\",\"position\":\"S\",\"name\":\"Savage, Darnell\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"13810\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"id\":\"14197\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"13514\",\"height\":\"75\",\"jersey\":\"79\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"LVR\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"LVR\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"LVR\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"NYG\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"TBB\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"BUF\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"DEN\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"DET\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"stats_id\":\"31991\",\"position\":\"DT\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"2\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CLE\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"FA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"NOS\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYG\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"DET\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"DEN\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"CHI\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"IND\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"FA\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"PIT\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"SEA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"JAC\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"stats_id\":\"32074\",\"position\":\"DT\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"MIA\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"TBB\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"NOS\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"IND\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"1\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"LVR\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"SEA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"PIT\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"FA\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"FA\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"DET\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"birthdate\":\"787208400\",\"draft_team\":\"FA\",\"stats_id\":\"31831\",\"position\":\"PK\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"stats_global_id\":\"744596\",\"height\":\"72\",\"rotowire_id\":\"13943\",\"weight\":\"189\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"id\":\"14335\",\"team\":\"TBB\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"DAL\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"birthdate\":\"816325200\",\"draft_team\":\"FA\",\"stats_id\":\"32238\",\"position\":\"RB\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"stats_global_id\":\"836057\",\"height\":\"72\",\"rotowire_id\":\"14082\",\"jersey\":\"23\",\"weight\":\"226\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"id\":\"14338\",\"team\":\"NYG\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"birthdate\":\"755067600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"12121\",\"jersey\":\"13\",\"weight\":\"178\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"id\":\"14339\",\"team\":\"TBB\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"draft_team\":\"FA\",\"stats_id\":\"32456\",\"position\":\"TE\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"stats_global_id\":\"875649\",\"height\":\"80\",\"rotowire_id\":\"13602\",\"jersey\":\"46\",\"weight\":\"240\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"id\":\"14341\",\"team\":\"LAC\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"draft_team\":\"FA\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"CIN\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"CAR\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"birthdate\":\"789022800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"stats_global_id\":\"744162\",\"height\":\"72\",\"rotowire_id\":\"12734\",\"jersey\":\"46\",\"weight\":\"230\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"id\":\"14350\",\"team\":\"DAL\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"MIN\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"birthdate\":\"770101200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"stats_global_id\":\"746191\",\"height\":\"74\",\"rotowire_id\":\"12539\",\"jersey\":\"15\",\"weight\":\"200\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"id\":\"14365\",\"team\":\"LAC\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"82\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"CIN\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"birthdate\":\"822459600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"stats_global_id\":\"832993\",\"height\":\"76\",\"rotowire_id\":\"13237\",\"jersey\":\"76\",\"weight\":\"295\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"id\":\"14377\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32220\",\"position\":\"LB\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"stats_global_id\":\"821593\",\"height\":\"74\",\"rotowire_id\":\"13907\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"id\":\"14384\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"stats_global_id\":\"699216\",\"height\":\"70\",\"rotowire_id\":\"11374\",\"jersey\":\"42\",\"weight\":\"200\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"id\":\"14394\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"birthdate\":\"818917200\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820730\",\"height\":\"73\",\"rotowire_id\":\"13342\",\"jersey\":\"38\",\"weight\":\"210\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"id\":\"14398\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"FA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"LVR\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"stats_id\":\"31648\",\"position\":\"DE\",\"stats_global_id\":\"820764\",\"weight\":\"255\",\"id\":\"14421\",\"draft_team\":\"FA\",\"birthdate\":\"811314000\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"rotowire_id\":\"13187\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"birthdate\":\"841294800\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"stats_global_id\":\"837722\",\"height\":\"71\",\"rotowire_id\":\"12827\",\"jersey\":\"39\",\"weight\":\"200\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"id\":\"14434\",\"team\":\"WAS\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"college\":\"Louisville\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"JAC\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"FA\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"786690000\",\"draft_team\":\"FA\",\"stats_id\":\"32559\",\"position\":\"RB\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"stats_global_id\":\"835777\",\"height\":\"69\",\"rotowire_id\":\"14237\",\"jersey\":\"46\",\"weight\":\"179\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"id\":\"14465\",\"team\":\"MIN\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"birthdate\":\"840862800\",\"draft_team\":\"FA\",\"stats_id\":\"32556\",\"position\":\"WR\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"stats_global_id\":\"838301\",\"height\":\"75\",\"rotowire_id\":\"14236\",\"jersey\":\"81\",\"weight\":\"205\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"id\":\"14481\",\"team\":\"DAL\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"birthdate\":\"848206800\",\"draft_team\":\"FA\",\"stats_id\":\"32283\",\"position\":\"WR\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"stats_global_id\":\"1063397\",\"height\":\"73\",\"rotowire_id\":\"14129\",\"jersey\":\"83\",\"weight\":\"201\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"id\":\"14486\",\"team\":\"CLE\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"birthdate\":\"850366800\",\"draft_team\":\"FA\",\"stats_id\":\"32273\",\"position\":\"TE\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"stats_global_id\":\"881697\",\"height\":\"76\",\"rotowire_id\":\"14131\",\"jersey\":\"89\",\"weight\":\"240\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"id\":\"14488\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"birthdate\":\"867992400\",\"draft_team\":\"FA\",\"stats_id\":\"32277\",\"position\":\"PN\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"stats_global_id\":\"891880\",\"height\":\"73\",\"rotowire_id\":\"14147\",\"jersey\":\"7\",\"weight\":\"207\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"id\":\"14489\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"809586000\",\"draft_team\":\"FA\",\"stats_id\":\"32205\",\"position\":\"LB\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"stats_global_id\":\"821248\",\"height\":\"75\",\"rotowire_id\":\"14068\",\"jersey\":\"57\",\"weight\":\"245\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"id\":\"14495\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"birthdate\":\"853390800\",\"draft_team\":\"FA\",\"stats_id\":\"32189\",\"position\":\"WR\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"stats_global_id\":\"1165782\",\"height\":\"72\",\"rotowire_id\":\"13919\",\"jersey\":\"2\",\"weight\":\"180\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"id\":\"14499\",\"team\":\"DEN\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"819262800\",\"draft_team\":\"FA\",\"stats_id\":\"32266\",\"position\":\"LB\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820700\",\"height\":\"72\",\"rotowire_id\":\"14103\",\"jersey\":\"40\",\"weight\":\"228\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"id\":\"14509\",\"team\":\"GBP\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"birthdate\":\"813992400\",\"draft_team\":\"FA\",\"stats_id\":\"32152\",\"position\":\"QB\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"stats_global_id\":\"945086\",\"height\":\"76\",\"rotowire_id\":\"14040\",\"jersey\":\"3\",\"weight\":\"221\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"id\":\"14510\",\"team\":\"FA\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2019\",\"birthdate\":\"900738000\",\"draft_team\":\"FA\",\"stats_id\":\"32623\",\"position\":\"S\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"stats_global_id\":\"910649\",\"height\":\"72\",\"rotowire_id\":\"14330\",\"jersey\":\"38\",\"weight\":\"195\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"id\":\"14518\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"birthdate\":\"845355600\",\"draft_team\":\"FA\",\"stats_id\":\"32151\",\"position\":\"LB\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"stats_global_id\":\"923359\",\"height\":\"75\",\"rotowire_id\":\"14257\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"id\":\"14519\",\"team\":\"CAR\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"birthdate\":\"867387600\",\"draft_team\":\"FA\",\"stats_id\":\"32509\",\"position\":\"DT\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"stats_global_id\":\"867748\",\"height\":\"75\",\"rotowire_id\":\"13864\",\"jersey\":\"67\",\"weight\":\"305\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"id\":\"14531\",\"team\":\"FA\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"birthdate\":\"803883600\",\"draft_team\":\"FA\",\"stats_id\":\"32547\",\"position\":\"WR\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"stats_global_id\":\"1166990\",\"height\":\"74\",\"rotowire_id\":\"13999\",\"jersey\":\"89\",\"weight\":\"213\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"id\":\"14545\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"birthdate\":\"822718800\",\"draft_team\":\"FA\",\"stats_id\":\"32137\",\"position\":\"WR\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"stats_global_id\":\"828656\",\"height\":\"70\",\"rotowire_id\":\"14012\",\"jersey\":\"14\",\"weight\":\"180\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"id\":\"14549\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"birthdate\":\"836197200\",\"draft_team\":\"FA\",\"stats_id\":\"32140\",\"position\":\"RB\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"835845\",\"height\":\"72\",\"rotowire_id\":\"13998\",\"jersey\":\"48\",\"weight\":\"233\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"id\":\"14552\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"birthdate\":\"848811600\",\"draft_team\":\"FA\",\"stats_id\":\"32143\",\"position\":\"WR\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"stats_global_id\":\"1050926\",\"height\":\"73\",\"rotowire_id\":\"14049\",\"jersey\":\"85\",\"weight\":\"166\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"id\":\"14554\",\"team\":\"MIN\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"birthdate\":\"848984400\",\"draft_team\":\"FA\",\"stats_id\":\"32612\",\"position\":\"WR\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"stats_global_id\":\"1168410\",\"height\":\"72\",\"rotowire_id\":\"14318\",\"jersey\":\"9\",\"weight\":\"190\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"id\":\"14555\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"birthdate\":\"881211600\",\"draft_team\":\"FA\",\"stats_id\":\"32398\",\"position\":\"WR\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"stats_global_id\":\"1166545\",\"height\":\"66\",\"rotowire_id\":\"14191\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"id\":\"14558\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"birthdate\":\"855378000\",\"draft_team\":\"FA\",\"stats_id\":\"32492\",\"position\":\"LB\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"stats_global_id\":\"880029\",\"height\":\"77\",\"rotowire_id\":\"13859\",\"jersey\":\"58\",\"weight\":\"260\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"id\":\"14559\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"stats_id\":\"32243\",\"position\":\"WR\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"stats_global_id\":\"838670\",\"height\":\"72\",\"rotowire_id\":\"13815\",\"jersey\":\"80\",\"weight\":\"191\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"id\":\"14560\",\"team\":\"CHI\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"82\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"805698000\",\"draft_team\":\"FA\",\"stats_id\":\"32548\",\"position\":\"PN\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"stats_global_id\":\"839067\",\"height\":\"75\",\"rotowire_id\":\"14265\",\"jersey\":\"6\",\"weight\":\"219\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"id\":\"14568\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"852181200\",\"draft_team\":\"FA\",\"stats_id\":\"32589\",\"position\":\"S\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"stats_global_id\":\"865648\",\"height\":\"71\",\"rotowire_id\":\"14297\",\"jersey\":\"32\",\"weight\":\"195\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"id\":\"14579\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"birthdate\":\"832568400\",\"draft_team\":\"FA\",\"stats_id\":\"32222\",\"position\":\"LB\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"stats_global_id\":\"828111\",\"height\":\"74\",\"rotowire_id\":\"14081\",\"jersey\":\"54\",\"weight\":\"240\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"id\":\"14584\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"birthdate\":\"870670800\",\"draft_team\":\"FA\",\"stats_id\":\"32318\",\"position\":\"LB\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"866464\",\"height\":\"74\",\"rotowire_id\":\"13829\",\"jersey\":\"46\",\"weight\":\"228\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"id\":\"14590\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"birthdate\":\"830408400\",\"draft_team\":\"FA\",\"stats_id\":\"32364\",\"position\":\"TE\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"stats_global_id\":\"832213\",\"height\":\"75\",\"rotowire_id\":\"14184\",\"jersey\":\"40\",\"weight\":\"225\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"id\":\"14591\",\"team\":\"KCC\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"birthdate\":\"869634000\",\"draft_team\":\"FA\",\"stats_id\":\"32123\",\"position\":\"WR\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"stats_global_id\":\"883976\",\"height\":\"68\",\"rotowire_id\":\"13833\",\"jersey\":\"17\",\"weight\":\"190\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"id\":\"14592\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32461\",\"position\":\"DT\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"835485\",\"height\":\"76\",\"rotowire_id\":\"14213\",\"jersey\":\"62\",\"weight\":\"285\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"id\":\"14595\",\"team\":\"DET\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"birthdate\":\"829112400\",\"draft_team\":\"FA\",\"stats_id\":\"32384\",\"position\":\"PK\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"stats_global_id\":\"836963\",\"height\":\"71\",\"rotowire_id\":\"14172\",\"jersey\":\"4\",\"weight\":\"213\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"id\":\"14600\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"birthdate\":\"808635600\",\"draft_team\":\"FA\",\"stats_id\":\"32439\",\"position\":\"RB\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"stats_global_id\":\"835694\",\"height\":\"72\",\"rotowire_id\":\"13913\",\"jersey\":\"42\",\"weight\":\"205\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"id\":\"14612\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"birthdate\":\"859784400\",\"draft_team\":\"FA\",\"stats_id\":\"32187\",\"position\":\"WR\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"stats_global_id\":\"877596\",\"height\":\"70\",\"rotowire_id\":\"14055\",\"jersey\":\"15\",\"weight\":\"190\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"id\":\"14613\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"birthdate\":\"829285200\",\"draft_team\":\"FA\",\"stats_id\":\"32581\",\"position\":\"QB\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"stats_global_id\":\"837040\",\"height\":\"73\",\"rotowire_id\":\"13566\",\"jersey\":\"6\",\"weight\":\"210\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"id\":\"14618\",\"team\":\"PIT\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"881730000\",\"draft_team\":\"FA\",\"stats_id\":\"32642\",\"position\":\"QB\",\"name\":\"Ta'amu, Jordan\",\"college\":\"Mississippi\",\"stats_global_id\":\"974470\",\"height\":\"75\",\"rotowire_id\":\"13629\",\"jersey\":\"6\",\"weight\":\"221\",\"sportsdata_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"id\":\"14622\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"817448400\",\"draft_team\":\"FA\",\"stats_id\":\"32386\",\"position\":\"PN\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"stats_global_id\":\"866061\",\"height\":\"76\",\"rotowire_id\":\"14171\",\"jersey\":\"6\",\"weight\":\"220\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"id\":\"14630\",\"team\":\"LVR\"},{\"draft_year\":\"2019\",\"birthdate\":\"857192400\",\"draft_team\":\"FA\",\"stats_id\":\"32321\",\"position\":\"DT\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"stats_global_id\":\"883319\",\"height\":\"73\",\"rotowire_id\":\"13519\",\"jersey\":\"60\",\"weight\":\"285\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"id\":\"14652\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"birthdate\":\"827211600\",\"draft_team\":\"FA\",\"stats_id\":\"32425\",\"position\":\"DT\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"stats_global_id\":\"834396\",\"height\":\"73\",\"rotowire_id\":\"14204\",\"jersey\":\"79\",\"weight\":\"299\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"id\":\"14653\",\"team\":\"TEN\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"stats_id\":\"32295\",\"position\":\"TE\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"stats_global_id\":\"884045\",\"height\":\"76\",\"rotowire_id\":\"14094\",\"jersey\":\"86\",\"weight\":\"245\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"id\":\"14654\",\"team\":\"WAS\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32241\",\"position\":\"LB\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"881829\",\"height\":\"73\",\"rotowire_id\":\"13487\",\"jersey\":\"48\",\"weight\":\"235\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"id\":\"14660\",\"team\":\"NYG\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"38\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"LVR\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"27\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"95\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"LAR\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Wiltz, Jomal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"74\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"birthdate\":\"873349200\",\"draft_team\":\"FA\",\"stats_id\":\"32155\",\"position\":\"DT\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14044\",\"jersey\":\"72\",\"weight\":\"320\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"id\":\"14677\",\"team\":\"ARI\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"79\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"birthdate\":\"832395600\",\"draft_team\":\"FA\",\"stats_id\":\"32304\",\"position\":\"LB\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13539\",\"jersey\":\"50\",\"weight\":\"240\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"id\":\"14682\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"ARI\"},{\"draft_year\":\"2019\",\"birthdate\":\"863413200\",\"draft_team\":\"FA\",\"stats_id\":\"32552\",\"position\":\"S\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14267\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"id\":\"14702\",\"team\":\"LAC\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"71\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"birthdate\":\"829026000\",\"draft_team\":\"FA\",\"stats_id\":\"32417\",\"position\":\"PK\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14254\",\"jersey\":\"7\",\"weight\":\"190\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"id\":\"14717\",\"team\":\"IND\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"47\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"DEN\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"PHI\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32671\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14777\",\"draft_team\":\"CIN\",\"birthdate\":\"850194000\",\"name\":\"Burrow, Joe\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"14442\",\"height\":\"76\",\"twitter_username\":\"Joe_Burrow10\",\"sportsdata_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"team\":\"CIN\",\"cbs_id\":\"2179798\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32675\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14778\",\"draft_team\":\"MIA\",\"birthdate\":\"888814800\",\"name\":\"Tagovailoa, Tua\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"14465\",\"height\":\"73\",\"twitter_username\":\"Tuaamann\",\"sportsdata_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"team\":\"MIA\",\"cbs_id\":\"2741209\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32676\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"237\",\"id\":\"14779\",\"draft_team\":\"LAC\",\"birthdate\":\"889506000\",\"name\":\"Herbert, Justin\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"rotowire_id\":\"14446\",\"height\":\"78\",\"twitter_username\":\"Justin10Herbert\",\"sportsdata_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"team\":\"LAC\",\"cbs_id\":\"2221960\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32792\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14780\",\"draft_team\":\"IND\",\"birthdate\":\"879742800\",\"name\":\"Eason, Jacob\",\"draft_pick\":\"16\",\"college\":\"Washington\",\"rotowire_id\":\"14401\",\"height\":\"78\",\"twitter_username\":\"skinnyqb10\",\"sportsdata_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"team\":\"IND\",\"cbs_id\":\"2240210\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32837\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"222\",\"id\":\"14781\",\"draft_team\":\"BUF\",\"birthdate\":\"901774800\",\"name\":\"Fromm, Jake\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"rotowire_id\":\"14486\",\"height\":\"74\",\"twitter_username\":\"FrommJake\",\"sportsdata_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"team\":\"BUF\",\"cbs_id\":\"2803326\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32696\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14782\",\"draft_team\":\"GBP\",\"birthdate\":\"909982800\",\"name\":\"Love, Jordan\",\"draft_pick\":\"26\",\"college\":\"Utah State\",\"rotowire_id\":\"14371\",\"height\":\"76\",\"twitter_username\":\"jordan3love\",\"sportsdata_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"team\":\"GBP\",\"cbs_id\":\"2239997\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32723\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14783\",\"draft_team\":\"PHI\",\"birthdate\":\"902466000\",\"name\":\"Hurts, Jalen\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14416\",\"height\":\"74\",\"twitter_username\":\"JalenHurts\",\"sportsdata_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"team\":\"PHI\",\"cbs_id\":\"2240246\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33207\",\"position\":\"QB\",\"name\":\"Montez, Steven\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14393\",\"id\":\"14784\",\"team\":\"WAS\",\"cbs_id\":\"2185536\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32914\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"14785\",\"draft_team\":\"MIN\",\"birthdate\":\"872571600\",\"name\":\"Stanley, Nate\",\"draft_pick\":\"30\",\"college\":\"Iowa\",\"rotowire_id\":\"14566\",\"height\":\"76\",\"twitter_username\":\"Njstan4\",\"sportsdata_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"team\":\"MIN\",\"cbs_id\":\"2251110\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33246\",\"position\":\"QB\",\"name\":\"Patterson, Shea\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14469\",\"id\":\"14786\",\"team\":\"FA\",\"cbs_id\":\"2221866\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Gordon, Anthony\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14431\",\"id\":\"14787\",\"team\":\"SEA\",\"cbs_id\":\"2251387\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33015\",\"position\":\"QB\",\"name\":\"Lewerke, Brian\",\"college\":\"Michigan State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14530\",\"id\":\"14788\",\"team\":\"FA\",\"cbs_id\":\"2186429\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32993\",\"position\":\"QB\",\"name\":\"Huntley, Tyler\",\"college\":\"Utah\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14563\",\"sportsdata_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"id\":\"14789\",\"team\":\"BAL\",\"cbs_id\":\"3159137\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32795\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14790\",\"draft_team\":\"NYJ\",\"birthdate\":\"857106000\",\"name\":\"Morgan, James\",\"draft_pick\":\"19\",\"college\":\"Florida International\",\"rotowire_id\":\"14531\",\"height\":\"76\",\"twitter_username\":\"jmoneyyy12\",\"sportsdata_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"team\":\"NYJ\",\"cbs_id\":\"2180077\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Fine, Mason\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14786\",\"id\":\"14791\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Perkins, Bryce\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14429\",\"id\":\"14792\",\"team\":\"LAR\",\"cbs_id\":\"3159114\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32859\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"14793\",\"draft_team\":\"JAC\",\"birthdate\":\"829198800\",\"name\":\"Luton, Jake\",\"draft_pick\":\"10\",\"college\":\"Oregon State\",\"rotowire_id\":\"14562\",\"height\":\"78\",\"twitter_username\":\"jakeluton6\",\"sportsdata_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"team\":\"JAC\",\"cbs_id\":\"2132133\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32894\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14794\",\"draft_team\":\"TEN\",\"birthdate\":\"895640400\",\"name\":\"McDonald, Cole\",\"draft_pick\":\"10\",\"college\":\"Hawaii\",\"rotowire_id\":\"14493\",\"height\":\"76\",\"twitter_username\":\"ColeHunter520\",\"sportsdata_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"team\":\"TEN\",\"cbs_id\":\"2257005\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Bryant, Kelly\",\"college\":\"Missouri\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14528\",\"id\":\"14795\",\"team\":\"FA\",\"cbs_id\":\"2179210\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32928\",\"position\":\"QB\",\"name\":\"Neal, Riley\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14859\",\"id\":\"14796\",\"team\":\"DEN\",\"cbs_id\":\"3159056\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32705\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14797\",\"draft_team\":\"DET\",\"birthdate\":\"916290000\",\"name\":\"Swift, D'Andre\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"14394\",\"height\":\"70\",\"twitter_username\":\"DAndreSwift\",\"sportsdata_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"team\":\"DET\",\"cbs_id\":\"2871710\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32756\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14798\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Moss, Zack\",\"draft_pick\":\"22\",\"college\":\"Utah\",\"rotowire_id\":\"14564\",\"height\":\"70\",\"twitter_username\":\"PresMoss2\",\"sportsdata_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"team\":\"BUF\",\"cbs_id\":\"2240516\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32722\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14799\",\"draft_team\":\"LAR\",\"birthdate\":\"930027600\",\"name\":\"Akers, Cam\",\"draft_pick\":\"20\",\"college\":\"Florida State\",\"rotowire_id\":\"14383\",\"height\":\"71\",\"twitter_username\":\"thereal_cam3\",\"sportsdata_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"team\":\"LAR\",\"cbs_id\":\"2804034\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32725\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14800\",\"draft_team\":\"BAL\",\"birthdate\":\"913870800\",\"name\":\"Dobbins, J.K.\",\"draft_pick\":\"23\",\"college\":\"Ohio State\",\"rotowire_id\":\"14418\",\"height\":\"70\",\"twitter_username\":\"jkdobbins22\",\"sportsdata_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"team\":\"BAL\",\"cbs_id\":\"2804420\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32892\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14801\",\"draft_team\":\"ARI\",\"birthdate\":\"945061200\",\"name\":\"Benjamin, Eno\",\"draft_pick\":\"8\",\"college\":\"Arizona State\",\"rotowire_id\":\"14372\",\"height\":\"70\",\"twitter_username\":\"eno_benjamin5\",\"sportsdata_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"team\":\"ARI\",\"cbs_id\":\"2760832\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32711\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14802\",\"draft_team\":\"IND\",\"birthdate\":\"916722000\",\"name\":\"Taylor, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14455\",\"height\":\"71\",\"twitter_username\":\"JayT23\",\"sportsdata_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"team\":\"IND\",\"cbs_id\":\"2866395\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32702\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14803\",\"draft_team\":\"KCC\",\"birthdate\":\"923806800\",\"name\":\"Edwards-Helaire, Clyde\",\"draft_pick\":\"32\",\"college\":\"LSU\",\"rotowire_id\":\"14514\",\"height\":\"68\",\"sportsdata_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"team\":\"KCC\",\"cbs_id\":\"2804554\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32794\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14804\",\"draft_team\":\"PIT\",\"name\":\"McFarland, Anthony\",\"draft_pick\":\"18\",\"college\":\"Maryland\",\"rotowire_id\":\"14357\",\"height\":\"69\",\"sportsdata_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"team\":\"PIT\",\"cbs_id\":\"2804293\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32732\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"espn_id\":\"4239934\",\"weight\":\"250\",\"id\":\"14805\",\"draft_team\":\"GBP\",\"birthdate\":\"894085200\",\"name\":\"Dillon, AJ\",\"draft_pick\":\"30\",\"college\":\"Boston College\",\"rotowire_id\":\"14370\",\"height\":\"73\",\"twitter_username\":\"ajdillon7\",\"sportsdata_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"team\":\"GBP\",\"cbs_id\":\"2867083\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32790\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14806\",\"draft_team\":\"NYJ\",\"birthdate\":\"886136400\",\"name\":\"Perine, Lamical\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"14427\",\"height\":\"71\",\"twitter_username\":\"lp_deucedeuce\",\"sportsdata_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"team\":\"NYJ\",\"cbs_id\":\"2248610\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32782\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14807\",\"draft_team\":\"LAC\",\"birthdate\":\"880002000\",\"name\":\"Kelley, Joshua\",\"draft_pick\":\"6\",\"college\":\"UCLA\",\"rotowire_id\":\"14494\",\"height\":\"71\",\"twitter_username\":\"SmoothplayJK\",\"sportsdata_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"team\":\"LAC\",\"cbs_id\":\"2183195\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32763\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14808\",\"draft_team\":\"TEN\",\"birthdate\":\"899960400\",\"name\":\"Evans, Darrynton\",\"draft_pick\":\"29\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14400\",\"height\":\"71\",\"twitter_username\":\"ItzLiveee\",\"sportsdata_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"team\":\"TEN\",\"cbs_id\":\"2240806\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33153\",\"position\":\"RB\",\"name\":\"Smith, Rodney\",\"college\":\"Minnesota\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14435\",\"id\":\"14809\",\"team\":\"CAR\",\"cbs_id\":\"2165586\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32746\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14810\",\"draft_team\":\"TBB\",\"birthdate\":\"862722000\",\"name\":\"Vaughn, Ke'Shawn\",\"draft_pick\":\"12\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"14557\",\"height\":\"70\",\"twitter_username\":\"SneakVaughn\",\"sportsdata_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"team\":\"TBB\",\"cbs_id\":\"2179704\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Ahmed, Salvon\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14453\",\"id\":\"14811\",\"team\":\"SFO\",\"cbs_id\":\"2815163\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33098\",\"position\":\"RB\",\"name\":\"Anderson, Darius\",\"college\":\"TCU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14565\",\"id\":\"14812\",\"team\":\"DAL\",\"cbs_id\":\"2240319\"},{\"draft_year\":\"2020\",\"birthdate\":\"902638800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33138\",\"position\":\"RB\",\"name\":\"Robinson, James\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14660\",\"weight\":\"220\",\"sportsdata_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"id\":\"14813\",\"team\":\"JAC\",\"cbs_id\":\"2257036\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33307\",\"position\":\"RB\",\"name\":\"Herrien, Brian\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14438\",\"id\":\"14814\",\"team\":\"CLE\",\"cbs_id\":\"2248619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32814\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14815\",\"draft_team\":\"SEA\",\"birthdate\":\"905922000\",\"name\":\"Dallas, DeeJay\",\"draft_pick\":\"38\",\"college\":\"Miami\",\"rotowire_id\":\"14410\",\"height\":\"70\",\"twitter_username\":\"DallasDeejay\",\"sportsdata_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"team\":\"SEA\",\"cbs_id\":\"2804094\"},{\"draft_year\":\"2020\",\"birthdate\":\"910846800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32972\",\"position\":\"RB\",\"name\":\"Warren, Michael\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14496\",\"weight\":\"224\",\"sportsdata_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"id\":\"14816\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Taylor, Patrick\",\"college\":\"Memphis\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14573\",\"id\":\"14817\",\"team\":\"GBP\",\"cbs_id\":\"2256736\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Jones, Xavier\",\"college\":\"SMU\",\"stats_global_id\":\"0\",\"id\":\"14818\",\"team\":\"LAR\",\"cbs_id\":\"3159182\"},{\"draft_year\":\"2020\",\"birthdate\":\"883544400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33126\",\"position\":\"RB\",\"name\":\"Feaster, Tavien\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14592\",\"weight\":\"215\",\"sportsdata_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"id\":\"14819\",\"team\":\"JAC\",\"cbs_id\":\"2239519\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33037\",\"position\":\"RB\",\"name\":\"Leake, Javon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14361\",\"id\":\"14820\",\"team\":\"NYG\",\"cbs_id\":\"2804292\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Hasty, JaMycal\",\"college\":\"Baylor\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14392\",\"id\":\"14821\",\"team\":\"SFO\",\"cbs_id\":\"2189504\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Corbin, Reggie\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14440\",\"id\":\"14822\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33100\",\"position\":\"RB\",\"name\":\"Dowdle, Rico\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14657\",\"id\":\"14823\",\"team\":\"DAL\",\"cbs_id\":\"2252798\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33161\",\"position\":\"RB\",\"name\":\"Phillips, Scottie\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14659\",\"id\":\"14824\",\"team\":\"HOU\",\"cbs_id\":\"2962972\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Conkrite, Jordan\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"id\":\"14825\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Pierce, Artavis\",\"college\":\"Oregon State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14881\",\"id\":\"14826\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33028\",\"position\":\"RB\",\"name\":\"Taylor, J.J.\",\"college\":\"Arizona\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14459\",\"id\":\"14827\",\"team\":\"NEP\",\"cbs_id\":\"2252786\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33114\",\"position\":\"RB\",\"name\":\"Jones, Tony\",\"college\":\"Notre Dame\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14423\",\"weight\":\"224\",\"sportsdata_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"id\":\"14828\",\"team\":\"NOS\",\"cbs_id\":\"2260681\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33309\",\"position\":\"RB\",\"name\":\"LeMay, Benny\",\"college\":\"Charlotte\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14532\",\"id\":\"14829\",\"team\":\"CLE\",\"cbs_id\":\"2258154\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32926\",\"position\":\"RB\",\"name\":\"Bellamy, LaVante\",\"college\":\"Western Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14656\",\"id\":\"14830\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32966\",\"position\":\"RB\",\"name\":\"Killins Jr., Adrian\",\"college\":\"Central Florida\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14396\",\"id\":\"14831\",\"team\":\"PHI\",\"cbs_id\":\"3159156\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32687\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"189\",\"id\":\"14832\",\"draft_team\":\"DAL\",\"birthdate\":\"923547600\",\"name\":\"Lamb, CeeDee\",\"draft_pick\":\"17\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14411\",\"height\":\"74\",\"twitter_username\":\"_CeeDeeThree\",\"sportsdata_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"team\":\"DAL\",\"cbs_id\":\"2865251\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32685\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14833\",\"draft_team\":\"DEN\",\"birthdate\":\"924930000\",\"name\":\"Jeudy, Jerry\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"14458\",\"height\":\"73\",\"twitter_username\":\"jerryjeudy\",\"sportsdata_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"team\":\"DEN\",\"cbs_id\":\"2741201\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32682\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14834\",\"draft_team\":\"LVR\",\"birthdate\":\"917154000\",\"name\":\"Ruggs, Henry\",\"draft_pick\":\"12\",\"college\":\"Alabama\",\"rotowire_id\":\"14473\",\"height\":\"72\",\"twitter_username\":\"__RUGGS\",\"sportsdata_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32703\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14835\",\"draft_team\":\"CIN\",\"birthdate\":\"917499600\",\"name\":\"Higgins, Tee\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"14506\",\"height\":\"76\",\"twitter_username\":\"teehiggins5\",\"sportsdata_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"team\":\"CIN\",\"cbs_id\":\"2809208\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32692\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14836\",\"draft_team\":\"MIN\",\"birthdate\":\"929509200\",\"name\":\"Jefferson, Justin\",\"draft_pick\":\"22\",\"college\":\"LSU\",\"rotowire_id\":\"14509\",\"height\":\"75\",\"twitter_username\":\"JJettas2\",\"sportsdata_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"team\":\"MIN\",\"cbs_id\":\"2871343\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32716\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"14837\",\"draft_team\":\"DEN\",\"birthdate\":\"931410000\",\"name\":\"Hamler, KJ\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14462\",\"height\":\"69\",\"twitter_username\":\"Kj_hamler\",\"sportsdata_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"team\":\"DEN\",\"cbs_id\":\"2804432\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32712\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14838\",\"draft_team\":\"JAC\",\"birthdate\":\"907563600\",\"name\":\"Shenault, Laviska\",\"draft_pick\":\"10\",\"college\":\"Colorado\",\"rotowire_id\":\"14358\",\"height\":\"74\",\"twitter_username\":\"Viska2live\",\"sportsdata_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32691\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14839\",\"draft_team\":\"PHI\",\"birthdate\":\"915166800\",\"name\":\"Reagor, Jalen\",\"draft_pick\":\"21\",\"college\":\"TCU\",\"rotowire_id\":\"14421\",\"height\":\"71\",\"twitter_username\":\"jalenreagor\",\"sportsdata_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"team\":\"PHI\",\"cbs_id\":\"2803733\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32695\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"14840\",\"draft_team\":\"SFO\",\"birthdate\":\"890110800\",\"name\":\"Aiyuk, Brandon\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"rotowire_id\":\"14386\",\"height\":\"73\",\"twitter_username\":\"THE2ERA\",\"sportsdata_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"team\":\"SFO\",\"cbs_id\":\"2967489\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32719\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14841\",\"draft_team\":\"PIT\",\"birthdate\":\"899787600\",\"name\":\"Claypool, Chase\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14433\",\"height\":\"76\",\"twitter_username\":\"ChaseClaypool\",\"sportsdata_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"team\":\"PIT\",\"cbs_id\":\"2260676\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32704\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14842\",\"draft_team\":\"IND\",\"birthdate\":\"876027600\",\"name\":\"Pittman, Michael\",\"draft_pick\":\"2\",\"college\":\"USC\",\"rotowire_id\":\"14378\",\"height\":\"76\",\"twitter_username\":\"MikePitt_Jr\",\"sportsdata_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"team\":\"IND\",\"cbs_id\":\"2240188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32750\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14843\",\"draft_team\":\"LVR\",\"birthdate\":\"876805200\",\"name\":\"Bowden, Lynn\",\"draft_pick\":\"16\",\"college\":\"Kentucky\",\"rotowire_id\":\"14460\",\"height\":\"72\",\"twitter_username\":\"LynnBowden_1\",\"sportsdata_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"team\":\"LVR\",\"cbs_id\":\"2875380\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32751\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14844\",\"draft_team\":\"LVR\",\"birthdate\":\"910933200\",\"name\":\"Edwards, Bryan\",\"draft_pick\":\"17\",\"college\":\"South Carolina\",\"rotowire_id\":\"14577\",\"height\":\"75\",\"twitter_username\":\"B__ED89\",\"sportsdata_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"team\":\"LVR\",\"cbs_id\":\"2221840\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32798\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14845\",\"draft_team\":\"BUF\",\"birthdate\":\"922942800\",\"name\":\"Davis, Gabriel\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"rotowire_id\":\"14359\",\"height\":\"75\",\"twitter_username\":\"DavisGB1\",\"sportsdata_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"team\":\"BUF\",\"cbs_id\":\"2804813\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32729\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14846\",\"draft_team\":\"NYJ\",\"birthdate\":\"876459600\",\"name\":\"Mims, Denzel\",\"draft_pick\":\"27\",\"college\":\"Baylor\",\"rotowire_id\":\"14539\",\"height\":\"75\",\"twitter_username\":\"Zel5Zelly\",\"sportsdata_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"team\":\"NYJ\",\"cbs_id\":\"2253076\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32762\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14847\",\"draft_team\":\"BAL\",\"birthdate\":\"874040400\",\"name\":\"Duvernay, Devin\",\"draft_pick\":\"28\",\"college\":\"Texas\",\"rotowire_id\":\"14636\",\"height\":\"71\",\"twitter_username\":\"Dev_Duv5\",\"sportsdata_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"team\":\"BAL\",\"cbs_id\":\"2246849\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32871\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14848\",\"draft_team\":\"BAL\",\"birthdate\":\"843282000\",\"name\":\"Proche, James\",\"draft_pick\":\"22\",\"college\":\"SMU\",\"rotowire_id\":\"14415\",\"height\":\"72\",\"twitter_username\":\"jamesproche3\",\"sportsdata_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"team\":\"BAL\",\"cbs_id\":\"2180769\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32877\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14849\",\"draft_team\":\"BUF\",\"birthdate\":\"908946000\",\"name\":\"Hodgins, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Oregon State\",\"rotowire_id\":\"14356\",\"height\":\"76\",\"twitter_username\":\"IsaiahHodgins\",\"sportsdata_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"team\":\"BUF\",\"cbs_id\":\"2783899\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32836\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14850\",\"draft_team\":\"DET\",\"birthdate\":\"891406800\",\"name\":\"Cephus, Quintez\",\"draft_pick\":\"20\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14466\",\"height\":\"73\",\"twitter_username\":\"QoDeep_87\",\"sportsdata_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"team\":\"DET\",\"cbs_id\":\"2251870\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32890\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14851\",\"draft_team\":\"LAC\",\"birthdate\":\"874299600\",\"name\":\"Hill, K.J.\",\"draft_pick\":\"6\",\"college\":\"Ohio State\",\"rotowire_id\":\"14414\",\"height\":\"72\",\"twitter_username\":\"kayjayhill\",\"sportsdata_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"team\":\"LAC\",\"cbs_id\":\"2179813\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32736\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14852\",\"draft_team\":\"WAS\",\"name\":\"Gibson, Antonio\",\"draft_pick\":\"2\",\"college\":\"Memphis\",\"rotowire_id\":\"14639\",\"height\":\"74\",\"twitter_username\":\"antoniogibson14\",\"sportsdata_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"team\":\"WAS\",\"cbs_id\":\"2960976\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32835\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14853\",\"draft_team\":\"JAC\",\"birthdate\":\"874990800\",\"name\":\"Johnson, Collin\",\"draft_pick\":\"19\",\"college\":\"Texas\",\"rotowire_id\":\"14545\",\"height\":\"78\",\"twitter_username\":\"Call_In_Johnson\",\"sportsdata_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"team\":\"JAC\",\"cbs_id\":\"2240315\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Victor, Binjimen\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14529\",\"id\":\"14854\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33039\",\"position\":\"WR\",\"name\":\"Mack, Austin\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14546\",\"weight\":\"215\",\"sportsdata_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"id\":\"14855\",\"team\":\"NYG\",\"cbs_id\":\"2239784\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33027\",\"position\":\"WR\",\"name\":\"Davis, Quartney\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14461\",\"id\":\"14856\",\"team\":\"MIN\",\"cbs_id\":\"2249179\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32857\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14857\",\"draft_team\":\"CLE\",\"birthdate\":\"919400400\",\"name\":\"Peoples-Jones, Donovan\",\"draft_pick\":\"8\",\"college\":\"Michigan\",\"rotowire_id\":\"14457\",\"height\":\"74\",\"twitter_username\":\"dpeoplesjones\",\"sportsdata_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"team\":\"CLE\",\"cbs_id\":\"2819119\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32727\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14858\",\"draft_team\":\"LAR\",\"birthdate\":\"838357200\",\"name\":\"Jefferson, Van\",\"draft_pick\":\"25\",\"college\":\"Florida\",\"rotowire_id\":\"14430\",\"height\":\"74\",\"sportsdata_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"team\":\"LAR\",\"cbs_id\":\"2186342\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"WR\",\"name\":\"Jackson, Trishton\",\"college\":\"Syracuse\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14402\",\"id\":\"14859\",\"team\":\"LAR\",\"cbs_id\":\"2253371\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32887\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14860\",\"draft_team\":\"SFO\",\"birthdate\":\"868510800\",\"name\":\"Jennings, Jauan\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"14376\",\"height\":\"75\",\"sportsdata_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"team\":\"SFO\",\"cbs_id\":\"2180514\"},{\"draft_year\":\"2020\",\"birthdate\":\"842590800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33113\",\"position\":\"WR\",\"name\":\"Johnson, Juwan\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14630\",\"weight\":\"231\",\"sportsdata_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"id\":\"14861\",\"team\":\"NOS\",\"cbs_id\":\"2186637\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32821\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14862\",\"draft_team\":\"LAC\",\"birthdate\":\"883890000\",\"name\":\"Reed, Joe\",\"draft_pick\":\"5\",\"college\":\"Virginia\",\"rotowire_id\":\"14428\",\"height\":\"73\",\"twitter_username\":\"JoeBee_2\",\"sportsdata_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"team\":\"LAC\",\"cbs_id\":\"2251260\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32812\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14863\",\"draft_team\":\"WAS\",\"birthdate\":\"892270800\",\"name\":\"Gandy-Golden, Antonio\",\"draft_pick\":\"36\",\"college\":\"Liberty\",\"rotowire_id\":\"14568\",\"height\":\"76\",\"twitter_username\":\"gandygolden11\",\"sportsdata_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"team\":\"WAS\",\"cbs_id\":\"2250521\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32831\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14864\",\"draft_team\":\"TBB\",\"birthdate\":\"904021200\",\"name\":\"Johnson, Tyler\",\"draft_pick\":\"15\",\"college\":\"Minnesota\",\"rotowire_id\":\"14432\",\"height\":\"74\",\"twitter_username\":\"T_muhneyy10\",\"sportsdata_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"team\":\"TBB\",\"cbs_id\":\"1620002\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32884\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"14865\",\"draft_team\":\"SEA\",\"birthdate\":\"902206800\",\"name\":\"Swain, Freddie\",\"draft_pick\":\"35\",\"college\":\"Florida\",\"rotowire_id\":\"14644\",\"height\":\"72\",\"sportsdata_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"team\":\"SEA\",\"cbs_id\":\"2221836\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33022\",\"position\":\"WR\",\"name\":\"Thomas, Jeff\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14382\",\"id\":\"14866\",\"team\":\"NEP\",\"cbs_id\":\"2826768\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32713\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"258\",\"id\":\"14867\",\"draft_team\":\"CHI\",\"birthdate\":\"921042000\",\"name\":\"Kmet, Cole\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14436\",\"height\":\"78\",\"twitter_username\":\"ColeKmet\",\"sportsdata_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"team\":\"CHI\",\"cbs_id\":\"2868619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32806\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14868\",\"draft_team\":\"LAR\",\"birthdate\":\"859438800\",\"name\":\"Hopkins, Brycen\",\"draft_pick\":\"30\",\"college\":\"Purdue\",\"rotowire_id\":\"14586\",\"height\":\"77\",\"twitter_username\":\"Itsbhop89\",\"sportsdata_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"team\":\"LAR\",\"cbs_id\":\"2183906\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33208\",\"position\":\"TE\",\"name\":\"Moss, Thaddeus\",\"college\":\"LSU\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14524\",\"id\":\"14869\",\"team\":\"WAS\",\"cbs_id\":\"2246946\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32775\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14870\",\"draft_team\":\"NOS\",\"birthdate\":\"855118800\",\"name\":\"Trautman, Adam\",\"draft_pick\":\"41\",\"college\":\"Dayton\",\"rotowire_id\":\"14541\",\"height\":\"78\",\"sportsdata_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"team\":\"NOS\",\"cbs_id\":\"2182228\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32803\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14871\",\"draft_team\":\"SEA\",\"birthdate\":\"915771600\",\"name\":\"Parkinson, Colby\",\"draft_pick\":\"27\",\"college\":\"Stanford\",\"rotowire_id\":\"14463\",\"height\":\"79\",\"sportsdata_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"team\":\"SEA\",\"cbs_id\":\"2867522\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33064\",\"position\":\"TE\",\"name\":\"Pinkney, Jared\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14632\",\"sportsdata_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"id\":\"14872\",\"team\":\"ATL\",\"cbs_id\":\"2180558\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32788\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14873\",\"draft_team\":\"DEN\",\"birthdate\":\"893480400\",\"name\":\"Okwuegbunam, Albert\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"rotowire_id\":\"14369\",\"height\":\"77\",\"twitter_username\":\"AOkwuegbunam\",\"sportsdata_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"team\":\"DEN\",\"cbs_id\":\"2245117\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"TE\",\"name\":\"Bryant, Hunter\",\"college\":\"Washington\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14364\",\"id\":\"14874\",\"team\":\"DET\",\"cbs_id\":\"2815166\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32785\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14875\",\"draft_team\":\"CLE\",\"birthdate\":\"893307600\",\"name\":\"Bryant, Harrison\",\"draft_pick\":\"9\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14576\",\"height\":\"77\",\"twitter_username\":\"hbryant17\",\"sportsdata_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"team\":\"CLE\",\"cbs_id\":\"2241240\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32764\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14876\",\"draft_team\":\"GBP\",\"birthdate\":\"855896400\",\"name\":\"Deguara, Josiah\",\"draft_pick\":\"30\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14629\",\"height\":\"75\",\"twitter_username\":\"JosiahD5\",\"sportsdata_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"team\":\"GBP\",\"cbs_id\":\"2181108\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32672\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14877\",\"draft_team\":\"WAS\",\"birthdate\":\"924066000\",\"name\":\"Young, Chase\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"14452\",\"height\":\"77\",\"twitter_username\":\"youngchase907\",\"sportsdata_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"team\":\"WAS\",\"cbs_id\":\"2829229\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32707\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"264\",\"id\":\"14878\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Gross-Matos, Yetur\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"rotowire_id\":\"14355\",\"height\":\"77\",\"twitter_username\":\"__lobo99\",\"sportsdata_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"team\":\"CAR\",\"cbs_id\":\"2868927\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32724\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14879\",\"draft_team\":\"BUF\",\"birthdate\":\"905835600\",\"name\":\"Epenesa, A.J.\",\"draft_pick\":\"22\",\"college\":\"Iowa\",\"rotowire_id\":\"14501\",\"height\":\"77\",\"twitter_username\":\"ajepenesa24\",\"sportsdata_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"team\":\"BUF\",\"cbs_id\":\"2865969\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32817\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14880\",\"draft_team\":\"CIN\",\"birthdate\":\"893739600\",\"name\":\"Kareem, Khalid\",\"draft_pick\":\"1\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14684\",\"height\":\"76\",\"twitter_username\":\"khalid_kareem53\",\"sportsdata_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"team\":\"CIN\",\"cbs_id\":\"2240621\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"DE\",\"name\":\"Coe, Nick\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14398\",\"id\":\"14881\",\"team\":\"NEP\",\"cbs_id\":\"2257893\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"rotoworld_id\":\"60119\",\"status\":\"R\",\"stats_id\":\"32760\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14882\",\"draft_team\":\"HOU\",\"birthdate\":\"864536400\",\"name\":\"Greenard, Jonathan\",\"draft_pick\":\"26\",\"college\":\"Florida\",\"rotowire_id\":\"14550\",\"height\":\"75\",\"twitter_username\":\"jongreenard7\",\"sportsdata_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"team\":\"HOU\",\"cbs_id\":\"2181166\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32717\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"279\",\"id\":\"14883\",\"draft_team\":\"ATL\",\"birthdate\":\"894862800\",\"name\":\"Davidson, Marlon\",\"draft_pick\":\"15\",\"college\":\"Auburn\",\"rotowire_id\":\"14540\",\"height\":\"75\",\"twitter_username\":\"marlondavidson7\",\"sportsdata_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"team\":\"ATL\",\"cbs_id\":\"2222006\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32824\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14884\",\"draft_team\":\"MIA\",\"birthdate\":\"842331600\",\"name\":\"Strowbridge, Jason\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"rotowire_id\":\"14730\",\"height\":\"77\",\"sportsdata_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"team\":\"MIA\",\"cbs_id\":\"2179351\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32749\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"14885\",\"draft_team\":\"NYJ\",\"name\":\"Zuniga, Jabari\",\"draft_pick\":\"15\",\"college\":\"Florida\",\"rotowire_id\":\"14734\",\"height\":\"76\",\"twitter_username\":\"JabariZuniga\",\"sportsdata_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"team\":\"NYJ\",\"cbs_id\":\"2180452\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14886\",\"draft_team\":\"DAL\",\"birthdate\":\"908600400\",\"name\":\"Anae, Bradlee\",\"draft_pick\":\"33\",\"college\":\"Utah\",\"rotowire_id\":\"14582\",\"height\":\"75\",\"sportsdata_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"team\":\"DAL\",\"cbs_id\":\"2240496\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32678\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14887\",\"draft_team\":\"ARI\",\"birthdate\":\"901429200\",\"name\":\"Simmons, Isaiah\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"14525\",\"height\":\"75\",\"twitter_username\":\"isaiahsimmons25\",\"sportsdata_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"team\":\"ARI\",\"cbs_id\":\"2239532\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32690\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14888\",\"draft_team\":\"JAC\",\"birthdate\":\"932878800\",\"name\":\"Chaisson, K'Lavon\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"14523\",\"height\":\"76\",\"twitter_username\":\"S4CKGURU\",\"sportsdata_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"team\":\"JAC\",\"cbs_id\":\"2804551\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32693\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"234\",\"id\":\"14889\",\"draft_team\":\"LAC\",\"birthdate\":\"911192400\",\"name\":\"Murray, Kenneth\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14434\",\"height\":\"75\",\"twitter_username\":\"KennethMurray\",\"sportsdata_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"team\":\"LAC\",\"cbs_id\":\"2804138\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32767\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14890\",\"draft_team\":\"CLE\",\"birthdate\":\"922942800\",\"name\":\"Phillips, Jacob\",\"draft_pick\":\"33\",\"college\":\"LSU\",\"rotowire_id\":\"14517\",\"height\":\"76\",\"twitter_username\":\"jacobphilly\",\"sportsdata_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"team\":\"CLE\",\"cbs_id\":\"2804564\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32768\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14891\",\"draft_team\":\"BAL\",\"birthdate\":\"889074000\",\"name\":\"Harrison, Malik\",\"draft_pick\":\"34\",\"college\":\"Ohio State\",\"rotowire_id\":\"14648\",\"height\":\"75\",\"sportsdata_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"team\":\"BAL\",\"cbs_id\":\"2260979\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32697\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14892\",\"draft_team\":\"SEA\",\"birthdate\":\"877410000\",\"name\":\"Brooks, Jordyn\",\"draft_pick\":\"27\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14739\",\"height\":\"73\",\"twitter_username\":\"JordynBrooks_\",\"sportsdata_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"team\":\"SEA\",\"cbs_id\":\"2252263\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32744\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14893\",\"draft_team\":\"NOS\",\"name\":\"Baun, Zack\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14374\",\"height\":\"75\",\"twitter_username\":\"zackbizzaun\",\"sportsdata_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"team\":\"NOS\",\"cbs_id\":\"2183919\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32757\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14894\",\"draft_team\":\"NEP\",\"birthdate\":\"862462800\",\"name\":\"Jennings, Anfernee\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"14742\",\"height\":\"75\",\"twitter_username\":\"anferneejenning\",\"sportsdata_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"team\":\"NEP\",\"cbs_id\":\"2186321\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Woodward, David\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14645\",\"id\":\"14895\",\"team\":\"FA\",\"cbs_id\":\"2258285\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32698\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14896\",\"draft_team\":\"BAL\",\"birthdate\":\"934520400\",\"name\":\"Queen, Patrick\",\"draft_pick\":\"28\",\"college\":\"LSU\",\"rotowire_id\":\"14508\",\"height\":\"73\",\"twitter_username\":\"Patrickqueen_\",\"sportsdata_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"team\":\"BAL\",\"cbs_id\":\"2804566\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32677\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"318\",\"id\":\"14897\",\"draft_team\":\"CAR\",\"birthdate\":\"892616400\",\"name\":\"Brown, Derrick\",\"draft_pick\":\"7\",\"college\":\"Auburn\",\"rotowire_id\":\"13852\",\"height\":\"77\",\"twitter_username\":\"DerrickBrownAU5\",\"sportsdata_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"team\":\"CAR\",\"cbs_id\":\"2241797\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32726\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14898\",\"draft_team\":\"MIA\",\"birthdate\":\"865918800\",\"name\":\"Davis, Raekwon\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"14538\",\"height\":\"79\",\"twitter_username\":\"raekwondavis_99\",\"sportsdata_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"team\":\"MIA\",\"cbs_id\":\"2252833\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32684\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14899\",\"draft_team\":\"SFO\",\"birthdate\":\"875854800\",\"name\":\"Kinlaw, Javon\",\"draft_pick\":\"14\",\"college\":\"South Carolina\",\"rotowire_id\":\"14444\",\"height\":\"78\",\"twitter_username\":\"JavonKinlaw\",\"sportsdata_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"team\":\"SFO\",\"cbs_id\":\"2869019\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32741\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14900\",\"draft_team\":\"BAL\",\"birthdate\":\"879742800\",\"name\":\"Madubuike, Justin\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14380\",\"height\":\"75\",\"twitter_username\":\"MadubuikeJustin\",\"sportsdata_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"team\":\"BAL\",\"cbs_id\":\"2249188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32752\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"302\",\"id\":\"14901\",\"draft_team\":\"DAL\",\"birthdate\":\"853477200\",\"name\":\"Gallimore, Neville\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14451\",\"height\":\"74\",\"twitter_username\":\"path2greatwork\",\"sportsdata_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"team\":\"DAL\",\"cbs_id\":\"2179652\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32673\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14902\",\"draft_team\":\"DET\",\"birthdate\":\"917931600\",\"name\":\"Okudah, Jeff\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"14424\",\"height\":\"73\",\"twitter_username\":\"jeffokudah\",\"sportsdata_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"team\":\"DET\",\"cbs_id\":\"2804425\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32721\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"14903\",\"draft_team\":\"DAL\",\"birthdate\":\"906267600\",\"name\":\"Diggs, Trevon\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"14389\",\"height\":\"74\",\"twitter_username\":\"TrevonDiggs\",\"sportsdata_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"team\":\"DAL\",\"cbs_id\":\"2252834\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32731\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14904\",\"draft_team\":\"TEN\",\"birthdate\":\"904798800\",\"name\":\"Fulton, Kristian\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"14443\",\"height\":\"72\",\"twitter_username\":\"Kriss1_\",\"sportsdata_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"team\":\"TEN\",\"cbs_id\":\"2223248\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32679\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14905\",\"draft_team\":\"JAC\",\"birthdate\":\"907131600\",\"name\":\"Henderson, CJ\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"14367\",\"height\":\"73\",\"twitter_username\":\"HendersonChris_\",\"sportsdata_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"team\":\"JAC\",\"cbs_id\":\"2773013\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32689\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14906\",\"draft_team\":\"LVR\",\"birthdate\":\"823237200\",\"name\":\"Arnette, Damon\",\"draft_pick\":\"19\",\"college\":\"Ohio State\",\"rotowire_id\":\"14547\",\"height\":\"72\",\"twitter_username\":\"damon_arnette\",\"sportsdata_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"team\":\"LVR\",\"cbs_id\":\"2179793\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32714\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"14907\",\"draft_team\":\"CLE\",\"birthdate\":\"906267600\",\"name\":\"Delpit, Grant\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"14507\",\"height\":\"75\",\"twitter_username\":\"realgrantdelpit\",\"sportsdata_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"team\":\"CLE\",\"cbs_id\":\"2804169\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32706\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14908\",\"draft_team\":\"NYG\",\"birthdate\":\"934174800\",\"name\":\"McKinney, Xavier\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"rotowire_id\":\"14617\",\"height\":\"73\",\"twitter_username\":\"mckinney15__\",\"sportsdata_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"team\":\"NYG\",\"cbs_id\":\"2741205\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32715\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14909\",\"draft_team\":\"TBB\",\"birthdate\":\"903243600\",\"name\":\"Winfield, Antoine\",\"draft_pick\":\"13\",\"college\":\"Minnesota\",\"rotowire_id\":\"14484\",\"height\":\"69\",\"twitter_username\":\"AntoineWJr11\",\"sportsdata_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"team\":\"TBB\",\"cbs_id\":\"2239774\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32740\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14910\",\"draft_team\":\"MIA\",\"birthdate\":\"891493200\",\"name\":\"Jones, Brandon\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"rotowire_id\":\"14696\",\"height\":\"72\",\"twitter_username\":\"BlessedJones33\",\"sportsdata_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"team\":\"MIA\",\"cbs_id\":\"2246113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32738\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14911\",\"draft_team\":\"NYJ\",\"birthdate\":\"844923600\",\"name\":\"Davis, Ashtyn\",\"draft_pick\":\"4\",\"college\":\"California\",\"rotowire_id\":\"14447\",\"height\":\"73\",\"sportsdata_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"team\":\"NYJ\",\"cbs_id\":\"2180264\"},{\"draft_year\":\"2020\",\"birthdate\":\"854514000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33211\",\"position\":\"PK\",\"name\":\"Blankenship, Rodrigo\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14437\",\"weight\":\"191\",\"sportsdata_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"id\":\"14912\",\"team\":\"IND\",\"cbs_id\":\"2183949\"},{\"draft_year\":\"2018\",\"birthdate\":\"773298000\",\"draft_team\":\"FA\",\"stats_id\":\"31669\",\"position\":\"DE\",\"name\":\"Walker, Cavon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13244\",\"weight\":\"278\",\"sportsdata_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"id\":\"14913\",\"team\":\"PIT\"},{\"draft_year\":\"2019\",\"birthdate\":\"640933200\",\"draft_team\":\"FA\",\"stats_id\":\"32668\",\"position\":\"PK\",\"name\":\"Hajrullahu, Lirim\",\"college\":\"Western Ontario\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14808\",\"weight\":\"205\",\"sportsdata_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"id\":\"14914\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"799563600\",\"draft_team\":\"FA\",\"stats_id\":\"32667\",\"position\":\"PK\",\"name\":\"MacGinnis, Austin\",\"college\":\"Kentucky\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14354\",\"weight\":\"185\",\"sportsdata_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"id\":\"14915\",\"team\":\"LAR\"},{\"draft_year\":\"2019\",\"birthdate\":\"878706000\",\"draft_team\":\"FA\",\"stats_id\":\"32097\",\"position\":\"CB\",\"name\":\"Smith, Saivion\",\"college\":\"Alabama\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13589\",\"jersey\":\"35\",\"weight\":\"199\",\"sportsdata_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"id\":\"14916\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852613200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32669\",\"position\":\"RB\",\"name\":\"Patrick, Jacques\",\"college\":\"Florida State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13964\",\"weight\":\"236\",\"sportsdata_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"id\":\"14917\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32686\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14918\",\"draft_team\":\"ATL\",\"birthdate\":\"906526800\",\"name\":\"Terrell, A.J.\",\"draft_pick\":\"16\",\"college\":\"Clemson\",\"rotowire_id\":\"14526\",\"height\":\"74\",\"twitter_username\":\"ajterrell_8\",\"sportsdata_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"team\":\"ATL\",\"cbs_id\":\"2809212\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32700\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14919\",\"draft_team\":\"MIA\",\"birthdate\":\"943678800\",\"name\":\"Igbinoghene, Noah\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"14713\",\"height\":\"71\",\"twitter_username\":\"Noah_Igbo9\",\"sportsdata_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"team\":\"MIA\",\"cbs_id\":\"2829987\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32701\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14920\",\"draft_team\":\"MIN\",\"birthdate\":\"850366800\",\"name\":\"Gladney, Jeff\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"14548\",\"height\":\"72\",\"sportsdata_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"team\":\"MIN\",\"cbs_id\":\"2180855\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32710\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14921\",\"draft_team\":\"NEP\",\"birthdate\":\"827470800\",\"name\":\"Dugger, Kyle\",\"draft_pick\":\"5\",\"college\":\"Lenoir-Rhyne University\",\"rotowire_id\":\"14542\",\"height\":\"74\",\"twitter_username\":\"KingDugg_3\",\"sportsdata_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"team\":\"NEP\",\"cbs_id\":\"3150388\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32709\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14922\",\"draft_team\":\"HOU\",\"birthdate\":\"899960400\",\"name\":\"Blacklock, Ross\",\"draft_pick\":\"8\",\"college\":\"TCU\",\"rotowire_id\":\"14406\",\"height\":\"76\",\"twitter_username\":\"1krozayy\",\"sportsdata_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"team\":\"HOU\",\"cbs_id\":\"2240321\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32718\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14923\",\"draft_team\":\"SEA\",\"birthdate\":\"859179600\",\"name\":\"Taylor, Darrell\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"14649\",\"height\":\"75\",\"twitter_username\":\"darrelltaylorst\",\"sportsdata_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"team\":\"SEA\",\"cbs_id\":\"2180538\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32720\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14924\",\"draft_team\":\"CHI\",\"name\":\"Johnson, Jaylon\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14627\",\"height\":\"72\",\"twitter_username\":\"NBAxJay1\",\"sportsdata_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"team\":\"CHI\",\"cbs_id\":\"2827532\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32730\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14925\",\"draft_team\":\"NEP\",\"birthdate\":\"906094800\",\"name\":\"Uche, Josh\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"14477\",\"height\":\"74\",\"twitter_username\":\"_Uche35\",\"sportsdata_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"team\":\"NEP\",\"cbs_id\":\"2260670\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32733\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14926\",\"draft_team\":\"KCC\",\"birthdate\":\"887518800\",\"name\":\"Gay, Willie\",\"draft_pick\":\"31\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14520\",\"height\":\"74\",\"twitter_username\":\"WillieG___\",\"sportsdata_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32734\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14927\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Chinn, Jeremy\",\"draft_pick\":\"32\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14623\",\"height\":\"75\",\"twitter_username\":\"ChinnJeremy2\",\"sportsdata_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"team\":\"CAR\",\"cbs_id\":\"2247190\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32735\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14928\",\"draft_team\":\"CIN\",\"birthdate\":\"836802000\",\"name\":\"Wilson, Logan\",\"draft_pick\":\"1\",\"college\":\"Wyoming\",\"rotowire_id\":\"14647\",\"height\":\"74\",\"twitter_username\":\"ljw21\",\"sportsdata_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"team\":\"CIN\",\"cbs_id\":\"2181091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32737\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"241\",\"id\":\"14929\",\"draft_team\":\"DET\",\"birthdate\":\"883198800\",\"name\":\"Okwara, Julian\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14448\",\"height\":\"77\",\"twitter_username\":\"julian_okwara\",\"sportsdata_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"team\":\"DET\",\"cbs_id\":\"2260688\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32743\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14930\",\"draft_team\":\"JAC\",\"name\":\"Hamilton, Davon\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"14714\",\"height\":\"76\",\"twitter_username\":\"dmhamilton53\",\"sportsdata_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"team\":\"JAC\",\"cbs_id\":\"2179811\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32747\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14931\",\"draft_team\":\"DEN\",\"birthdate\":\"874040400\",\"name\":\"Ojemudia, Michael\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"14711\",\"height\":\"73\",\"twitter_username\":\"GotMo_J\",\"sportsdata_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"team\":\"DEN\",\"cbs_id\":\"2179727\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"252\",\"id\":\"14932\",\"draft_team\":\"LAR\",\"name\":\"Lewis, Terrell\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"rotowire_id\":\"14390\",\"height\":\"77\",\"twitter_username\":\"_real24_\",\"sportsdata_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"team\":\"LAR\",\"cbs_id\":\"2252836\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32755\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"14933\",\"draft_team\":\"IND\",\"birthdate\":\"903934800\",\"name\":\"Blackmon, Julian\",\"draft_pick\":\"21\",\"college\":\"Utah\",\"rotowire_id\":\"14704\",\"height\":\"73\",\"twitter_username\":\"jumpmanjuice23\",\"sportsdata_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"team\":\"IND\",\"cbs_id\":\"2253091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32758\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14934\",\"draft_team\":\"CLE\",\"birthdate\":\"880261200\",\"name\":\"Elliott, Jordan\",\"draft_pick\":\"24\",\"college\":\"Missouri\",\"rotowire_id\":\"14353\",\"height\":\"76\",\"twitter_username\":\"bigj5k\",\"sportsdata_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"team\":\"CLE\",\"cbs_id\":\"2246110\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32759\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14935\",\"draft_team\":\"MIN\",\"birthdate\":\"904798800\",\"name\":\"Dantzler, Cameron\",\"draft_pick\":\"25\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14363\",\"height\":\"74\",\"twitter_username\":\"camdantzler3\",\"sportsdata_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"team\":\"MIN\",\"cbs_id\":\"2248633\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32761\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14936\",\"draft_team\":\"NEP\",\"birthdate\":\"871534800\",\"name\":\"Asiasi, Devin\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"14425\",\"height\":\"75\",\"twitter_username\":\"ASI2X\",\"sportsdata_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"team\":\"NEP\",\"cbs_id\":\"2260483\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32765\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14937\",\"draft_team\":\"DEN\",\"birthdate\":\"875163600\",\"name\":\"Agim, McTelvin\",\"draft_pick\":\"31\",\"college\":\"Arkansas\",\"rotowire_id\":\"14602\",\"height\":\"75\",\"twitter_username\":\"So_Splash\",\"sportsdata_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"team\":\"DEN\",\"cbs_id\":\"2240258\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32770\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14938\",\"draft_team\":\"LVR\",\"birthdate\":\"841986000\",\"name\":\"Muse, Tanner\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"14690\",\"height\":\"75\",\"twitter_username\":\"tanner_muse\",\"sportsdata_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"team\":\"LVR\",\"cbs_id\":\"2179227\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32771\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14939\",\"draft_team\":\"NEP\",\"birthdate\":\"924066000\",\"name\":\"Keene, Dalton\",\"draft_pick\":\"37\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14559\",\"height\":\"76\",\"twitter_username\":\"DaltonKeene18\",\"sportsdata_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"team\":\"NEP\",\"cbs_id\":\"2805113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32772\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"14940\",\"draft_team\":\"PIT\",\"birthdate\":\"870930000\",\"name\":\"Highsmith, Alex\",\"draft_pick\":\"38\",\"college\":\"North Carolina-Charlotte\",\"rotowire_id\":\"14724\",\"height\":\"76\",\"twitter_username\":\"highsmith34\",\"sportsdata_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"team\":\"PIT\",\"cbs_id\":\"2241393\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32773\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14941\",\"draft_team\":\"PHI\",\"birthdate\":\"902293200\",\"name\":\"Taylor, Davion\",\"draft_pick\":\"39\",\"college\":\"Colorado\",\"rotowire_id\":\"14751\",\"height\":\"74\",\"twitter_username\":\"daviontaylot\",\"sportsdata_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"team\":\"PHI\",\"cbs_id\":\"2962569\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32774\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14942\",\"draft_team\":\"LAR\",\"birthdate\":\"910846800\",\"name\":\"Burgess, Terrell\",\"draft_pick\":\"40\",\"college\":\"Utah\",\"rotowire_id\":\"14702\",\"height\":\"72\",\"twitter_username\":\"titaniumt98\",\"sportsdata_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"team\":\"LAR\",\"cbs_id\":\"2240499\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32777\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14943\",\"draft_team\":\"CIN\",\"birthdate\":\"874818000\",\"name\":\"Davis-Gaither, Akeem\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14661\",\"height\":\"74\",\"twitter_username\":\"AkeemDavis16\",\"sportsdata_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"team\":\"CIN\",\"cbs_id\":\"2182263\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32780\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14944\",\"draft_team\":\"NYG\",\"birthdate\":\"898578000\",\"name\":\"Holmes, Darney\",\"draft_pick\":\"4\",\"college\":\"UCLA\",\"rotowire_id\":\"14535\",\"height\":\"70\",\"twitter_username\":\"prowaydarnay\",\"sportsdata_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32783\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"14945\",\"draft_team\":\"CAR\",\"birthdate\":\"885186000\",\"name\":\"Pride, Troy\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14581\",\"height\":\"71\",\"twitter_username\":\"TroyPride18\",\"sportsdata_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"team\":\"CAR\",\"cbs_id\":\"2260689\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32784\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"335\",\"id\":\"14946\",\"draft_team\":\"ARI\",\"birthdate\":\"903848400\",\"name\":\"Fotu, Leki\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"14712\",\"height\":\"77\",\"twitter_username\":\"LekiFotu\",\"sportsdata_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"team\":\"ARI\",\"cbs_id\":\"2240504\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32787\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14947\",\"draft_team\":\"MIN\",\"birthdate\":\"878274000\",\"name\":\"Wonnum, D.J.\",\"draft_pick\":\"11\",\"college\":\"South Carolina\",\"rotowire_id\":\"14612\",\"height\":\"77\",\"twitter_username\":\"dwonnum\",\"sportsdata_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"team\":\"MIN\",\"cbs_id\":\"2252822\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32789\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14948\",\"draft_team\":\"ATL\",\"birthdate\":\"872744400\",\"name\":\"Walker, Mykal\",\"draft_pick\":\"13\",\"college\":\"Fresno State\",\"rotowire_id\":\"14754\",\"height\":\"75\",\"twitter_username\":\"MykalWalker3\",\"sportsdata_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"team\":\"ATL\",\"cbs_id\":\"2865637\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32793\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14949\",\"draft_team\":\"DAL\",\"birthdate\":\"860994000\",\"name\":\"Robinson, Reggie\",\"draft_pick\":\"17\",\"college\":\"Tulsa\",\"rotowire_id\":\"14708\",\"height\":\"73\",\"twitter_username\":\"RegRobII\",\"sportsdata_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32797\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14950\",\"draft_team\":\"PHI\",\"birthdate\":\"869806800\",\"name\":\"Wallace, K'Von\",\"draft_pick\":\"21\",\"college\":\"Clemson\",\"rotowire_id\":\"14686\",\"height\":\"71\",\"twitter_username\":\"KVonWallace\",\"sportsdata_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"team\":\"PHI\",\"cbs_id\":\"2239538\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32800\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"14951\",\"draft_team\":\"MIN\",\"birthdate\":\"916808400\",\"name\":\"Lynch, James\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"14499\",\"height\":\"76\",\"twitter_username\":\"JamesHusker38\",\"sportsdata_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"team\":\"MIN\",\"cbs_id\":\"2868531\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32801\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"308\",\"id\":\"14952\",\"draft_team\":\"ARI\",\"birthdate\":\"904194000\",\"name\":\"Lawrence, Rashard\",\"draft_pick\":\"25\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14717\",\"height\":\"74\",\"twitter_username\":\"Rashard_99\",\"sportsdata_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"team\":\"ARI\",\"cbs_id\":\"2223249\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32802\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14953\",\"draft_team\":\"MIN\",\"birthdate\":\"843022800\",\"name\":\"Dye, Troy\",\"draft_pick\":\"26\",\"college\":\"Oregon\",\"rotowire_id\":\"14740\",\"height\":\"76\",\"twitter_username\":\"tdye15dbtroy\",\"sportsdata_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"team\":\"MIN\",\"cbs_id\":\"2221826\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32804\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14954\",\"draft_team\":\"ATL\",\"birthdate\":\"872485200\",\"name\":\"Hawkins, Jaylinn\",\"draft_pick\":\"28\",\"college\":\"California\",\"rotowire_id\":\"14697\",\"height\":\"74\",\"twitter_username\":\"jhawko6\",\"sportsdata_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"team\":\"ATL\",\"cbs_id\":\"2180267\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32807\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"14955\",\"draft_team\":\"JAC\",\"birthdate\":\"923288400\",\"name\":\"Scott, Josiah\",\"draft_pick\":\"31\",\"college\":\"Michigan State\",\"rotowire_id\":\"14413\",\"height\":\"70\",\"twitter_username\":\"josiahscott7\",\"sportsdata_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"team\":\"JAC\",\"cbs_id\":\"2807092\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32808\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14956\",\"draft_team\":\"KCC\",\"birthdate\":\"853822800\",\"name\":\"Sneed, L'Jarius\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14688\",\"height\":\"73\",\"sportsdata_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"team\":\"KCC\",\"cbs_id\":\"2239881\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32809\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14957\",\"draft_team\":\"LVR\",\"birthdate\":\"899701200\",\"name\":\"Robertson, Amik\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14709\",\"height\":\"69\",\"twitter_username\":\"_youngtruth7\",\"sportsdata_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"team\":\"LVR\",\"cbs_id\":\"2816298\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32810\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14958\",\"draft_team\":\"JAC\",\"birthdate\":\"878014800\",\"name\":\"Quarterman, Shaquille\",\"draft_pick\":\"34\",\"college\":\"Miami\",\"rotowire_id\":\"14747\",\"height\":\"73\",\"sportsdata_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"team\":\"JAC\",\"cbs_id\":\"2221934\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32811\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"181\",\"id\":\"14959\",\"draft_team\":\"HOU\",\"birthdate\":\"832136400\",\"name\":\"Reid, John\",\"draft_pick\":\"35\",\"college\":\"Penn State\",\"rotowire_id\":\"14710\",\"height\":\"70\",\"twitter_username\":\"John_Doe_25\",\"sportsdata_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"team\":\"HOU\",\"cbs_id\":\"2186643\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32818\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14960\",\"draft_team\":\"SEA\",\"birthdate\":\"896763600\",\"name\":\"Robinson, Alton\",\"draft_pick\":\"2\",\"college\":\"Syracuse\",\"rotowire_id\":\"14727\",\"height\":\"76\",\"sportsdata_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"team\":\"SEA\",\"cbs_id\":\"2868213\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32822\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14961\",\"draft_team\":\"CAR\",\"name\":\"Robinson, Kenny\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"rotowire_id\":\"14787\",\"height\":\"74\",\"twitter_username\":\"krob2__\",\"sportsdata_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"team\":\"CAR\",\"cbs_id\":\"2835561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32825\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"268\",\"id\":\"14962\",\"draft_team\":\"CHI\",\"birthdate\":\"866178000\",\"name\":\"Gipson, Trevis\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"rotowire_id\":\"14680\",\"height\":\"76\",\"twitter_username\":\"trevisgipson\",\"sportsdata_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"team\":\"CHI\",\"cbs_id\":\"2181277\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32827\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14963\",\"draft_team\":\"JAC\",\"birthdate\":\"899269200\",\"name\":\"Thomas, Daniel\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"14687\",\"height\":\"71\",\"twitter_username\":\"gamechanger021\",\"sportsdata_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"team\":\"JAC\",\"cbs_id\":\"2241807\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32828\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14964\",\"draft_team\":\"NYJ\",\"birthdate\":\"863326800\",\"name\":\"Hall, Bryce\",\"draft_pick\":\"12\",\"college\":\"Virginia\",\"rotowire_id\":\"14445\",\"height\":\"73\",\"sportsdata_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"team\":\"NYJ\",\"cbs_id\":\"2251254\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32829\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14965\",\"draft_team\":\"NEP\",\"birthdate\":\"849934800\",\"name\":\"Rohrwasser, Justin\",\"draft_pick\":\"13\",\"college\":\"Marshall\",\"rotowire_id\":\"14822\",\"height\":\"75\",\"sportsdata_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"team\":\"NEP\",\"cbs_id\":\"2194734\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32832\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14966\",\"draft_team\":\"WAS\",\"birthdate\":\"881384400\",\"name\":\"Hudson, Khaleke\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"14480\",\"height\":\"72\",\"twitter_username\":\"KhalekeHudson\",\"sportsdata_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"team\":\"WAS\",\"cbs_id\":\"2260652\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32833\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14967\",\"draft_team\":\"CHI\",\"birthdate\":\"881816400\",\"name\":\"Vildor, Kindle\",\"draft_pick\":\"17\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14706\",\"height\":\"71\",\"twitter_username\":\"ThePremier20\",\"sportsdata_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"team\":\"CHI\",\"cbs_id\":\"2252448\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32834\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14968\",\"draft_team\":\"MIA\",\"birthdate\":\"902120400\",\"name\":\"Weaver, Curtis\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"14409\",\"height\":\"75\",\"twitter_username\":\"curtisweaver99\",\"sportsdata_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"team\":\"MIA\",\"cbs_id\":\"2257946\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32838\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14969\",\"draft_team\":\"PHI\",\"birthdate\":\"833518800\",\"name\":\"Hightower, John\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"rotowire_id\":\"14567\",\"height\":\"74\",\"sportsdata_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"team\":\"PHI\",\"cbs_id\":\"2969061\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32839\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14970\",\"draft_team\":\"MIN\",\"name\":\"Hand, Harrison\",\"draft_pick\":\"23\",\"college\":\"Temple\",\"rotowire_id\":\"14522\",\"height\":\"72\",\"twitter_username\":\"__harry22\",\"sportsdata_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"team\":\"MIN\",\"cbs_id\":\"2868561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32840\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14971\",\"draft_team\":\"BAL\",\"birthdate\":\"849675600\",\"name\":\"Washington, Broderick\",\"draft_pick\":\"24\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14720\",\"height\":\"75\",\"sportsdata_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"team\":\"BAL\",\"cbs_id\":\"2185746\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32841\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14972\",\"draft_team\":\"HOU\",\"name\":\"Coulter, Isaiah\",\"draft_pick\":\"25\",\"college\":\"Rhode Island\",\"rotowire_id\":\"14537\",\"height\":\"75\",\"sportsdata_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"team\":\"HOU\",\"cbs_id\":\"2830035\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32842\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14973\",\"draft_team\":\"DET\",\"birthdate\":\"893048400\",\"name\":\"Huntley, Jason\",\"draft_pick\":\"26\",\"college\":\"New Mexico State\",\"rotowire_id\":\"14796\",\"height\":\"69\",\"twitter_username\":\"thejasonhuntley\",\"sportsdata_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"team\":\"DET\",\"cbs_id\":\"2239939\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32843\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14974\",\"draft_team\":\"CHI\",\"birthdate\":\"878101200\",\"name\":\"Mooney, Darnell\",\"draft_pick\":\"27\",\"college\":\"Tulane\",\"rotowire_id\":\"14510\",\"height\":\"71\",\"twitter_username\":\"Darnell_M1\",\"sportsdata_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"team\":\"CHI\",\"cbs_id\":\"2240651\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32844\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"291\",\"id\":\"14975\",\"draft_team\":\"TEN\",\"birthdate\":\"861858000\",\"name\":\"Murchison, Larrell\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14718\",\"height\":\"75\",\"twitter_username\":\"Murchboy92\",\"sportsdata_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"team\":\"TEN\",\"cbs_id\":\"2865164\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32845\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14976\",\"draft_team\":\"GBP\",\"birthdate\":\"898059600\",\"name\":\"Martin, Kamal\",\"draft_pick\":\"29\",\"college\":\"Minnesota\",\"rotowire_id\":\"14385\",\"height\":\"75\",\"twitter_username\":\"KamalMartin6\",\"sportsdata_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"team\":\"GBP\",\"cbs_id\":\"2239765\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32846\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14977\",\"draft_team\":\"MIN\",\"birthdate\":\"865918800\",\"name\":\"Osborn, K.J.\",\"draft_pick\":\"30\",\"college\":\"Miami\",\"rotowire_id\":\"14641\",\"height\":\"72\",\"sportsdata_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"team\":\"MIN\",\"cbs_id\":\"2184383\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32847\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14978\",\"draft_team\":\"KCC\",\"birthdate\":\"881211600\",\"name\":\"Danna, Michael\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"14823\",\"height\":\"74\",\"twitter_username\":\"M_Danna4\",\"sportsdata_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"team\":\"KCC\",\"cbs_id\":\"2180090\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32848\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14979\",\"draft_team\":\"DEN\",\"birthdate\":\"840603600\",\"name\":\"Strnad, Justin\",\"draft_pick\":\"32\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14757\",\"height\":\"75\",\"twitter_username\":\"jsgarbs\",\"sportsdata_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"team\":\"DEN\",\"cbs_id\":\"2186413\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32852\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14980\",\"draft_team\":\"NYG\",\"birthdate\":\"891406800\",\"name\":\"Brown, Cam\",\"draft_pick\":\"4\",\"college\":\"Penn State\",\"rotowire_id\":\"14596\",\"height\":\"77\",\"sportsdata_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"team\":\"NYG\",\"cbs_id\":\"2251294\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32854\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14981\",\"draft_team\":\"CAR\",\"birthdate\":\"845614800\",\"name\":\"Roy, Bravvion\",\"draft_pick\":\"5\",\"college\":\"Baylor\",\"rotowire_id\":\"14824\",\"height\":\"73\",\"twitter_username\":\"brave_roy\",\"sportsdata_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"team\":\"CAR\",\"cbs_id\":\"2253081\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32856\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14982\",\"draft_team\":\"LAC\",\"birthdate\":\"874472400\",\"name\":\"Gilman, Alohi\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14521\",\"height\":\"71\",\"twitter_username\":\"alohigilman\",\"sportsdata_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"team\":\"LAC\",\"cbs_id\":\"2868542\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32858\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14983\",\"draft_team\":\"BUF\",\"birthdate\":\"855896400\",\"name\":\"Bass, Tyler\",\"draft_pick\":\"9\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14609\",\"height\":\"70\",\"twitter_username\":\"tbass_xvi\",\"sportsdata_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"team\":\"BUF\",\"cbs_id\":\"2188356\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32860\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14984\",\"draft_team\":\"SFO\",\"birthdate\":\"876978000\",\"name\":\"Woerner, Charlie\",\"draft_pick\":\"11\",\"college\":\"Georgia\",\"rotowire_id\":\"14608\",\"height\":\"77\",\"sportsdata_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"team\":\"SFO\",\"cbs_id\":\"2248629\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32861\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14985\",\"draft_team\":\"NYJ\",\"birthdate\":\"880347600\",\"name\":\"Mann, Braden\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14654\",\"height\":\"71\",\"twitter_username\":\"MannBraden\",\"sportsdata_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32863\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"14986\",\"draft_team\":\"IND\",\"birthdate\":\"853304400\",\"name\":\"Windsor, Robert\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14613\",\"height\":\"77\",\"twitter_username\":\"RobertWindsor54\",\"sportsdata_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"team\":\"IND\",\"cbs_id\":\"2186647\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32864\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14987\",\"draft_team\":\"TBB\",\"birthdate\":\"840690000\",\"name\":\"Davis, Khalil\",\"draft_pick\":\"15\",\"college\":\"Nebraska\",\"rotowire_id\":\"14682\",\"height\":\"74\",\"twitter_username\":\"khalildaish95\",\"sportsdata_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"team\":\"TBB\",\"cbs_id\":\"2179622\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32866\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14988\",\"draft_team\":\"PHI\",\"birthdate\":\"860475600\",\"name\":\"Bradley, Shaun\",\"draft_pick\":\"17\",\"college\":\"Temple\",\"rotowire_id\":\"14737\",\"height\":\"73\",\"twitter_username\":\"Sdot_Bradley5\",\"sportsdata_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"team\":\"PHI\",\"cbs_id\":\"2239597\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32867\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14989\",\"draft_team\":\"DET\",\"birthdate\":\"865054800\",\"name\":\"Penisini, John\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14719\",\"height\":\"74\",\"twitter_username\":\"Dub_jayy_boy\",\"sportsdata_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"team\":\"DET\",\"cbs_id\":\"2827536\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32868\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14990\",\"draft_team\":\"PIT\",\"birthdate\":\"909550800\",\"name\":\"Brooks, Antoine\",\"draft_pick\":\"19\",\"college\":\"Maryland\",\"rotowire_id\":\"14595\",\"height\":\"71\",\"twitter_username\":\"TwanDoee\",\"sportsdata_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32869\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14991\",\"draft_team\":\"LAR\",\"birthdate\":\"888987600\",\"name\":\"Fuller, Jordan\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"14698\",\"height\":\"74\",\"twitter_username\":\"j_fuller4\",\"sportsdata_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"team\":\"LAR\",\"cbs_id\":\"2260978\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32870\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14992\",\"draft_team\":\"PHI\",\"birthdate\":\"897368400\",\"name\":\"Watkins, Quez\",\"draft_pick\":\"21\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"14464\",\"height\":\"74\",\"twitter_username\":\"AdamSchefter\",\"sportsdata_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"team\":\"PHI\",\"cbs_id\":\"2262953\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32872\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14993\",\"draft_team\":\"ARI\",\"birthdate\":\"902811600\",\"name\":\"Weaver, Evan\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"14752\",\"height\":\"75\",\"twitter_username\":\"Weavin_it\",\"sportsdata_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"team\":\"ARI\",\"cbs_id\":\"2250836\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32874\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"248\",\"id\":\"14994\",\"draft_team\":\"NEP\",\"birthdate\":\"907390800\",\"name\":\"Maluia, Cassh\",\"draft_pick\":\"25\",\"college\":\"Wyoming\",\"rotowire_id\":\"14826\",\"height\":\"72\",\"twitter_username\":\"cassh7mula\",\"sportsdata_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"team\":\"NEP\",\"cbs_id\":\"2258320\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32875\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14995\",\"draft_team\":\"MIN\",\"birthdate\":\"885358800\",\"name\":\"Metellus, Josh\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"rotowire_id\":\"14479\",\"height\":\"72\",\"twitter_username\":\"NoExcuses_23\",\"sportsdata_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"team\":\"MIN\",\"cbs_id\":\"2260662\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32876\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14996\",\"draft_team\":\"JAC\",\"birthdate\":\"859957200\",\"name\":\"Davis, Tyler\",\"draft_pick\":\"27\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14827\",\"height\":\"76\",\"twitter_username\":\"Tyler_Davis9\",\"sportsdata_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"team\":\"JAC\",\"cbs_id\":\"2182811\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32881\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"14997\",\"draft_team\":\"IND\",\"birthdate\":\"884149200\",\"name\":\"Rodgers, Isaiah\",\"draft_pick\":\"32\",\"college\":\"Massachusetts\",\"rotowire_id\":\"14828\",\"height\":\"70\",\"twitter_username\":\"rodgers_isaiah\",\"sportsdata_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"team\":\"IND\",\"cbs_id\":\"2261492\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32882\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14998\",\"draft_team\":\"IND\",\"birthdate\":\"902379600\",\"name\":\"Patmon, Dezmon\",\"draft_pick\":\"33\",\"college\":\"Washington State\",\"rotowire_id\":\"14643\",\"height\":\"76\",\"twitter_username\":\"dadpat7\",\"sportsdata_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"team\":\"IND\",\"cbs_id\":\"2221990\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32883\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"226\",\"id\":\"14999\",\"draft_team\":\"IND\",\"birthdate\":\"835938000\",\"name\":\"Glasgow, Jordan\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"14799\",\"height\":\"73\",\"sportsdata_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"team\":\"IND\",\"cbs_id\":\"2185709\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32885\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15000\",\"draft_team\":\"CIN\",\"birthdate\":\"857710800\",\"name\":\"Bailey, Markus\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"rotowire_id\":\"14736\",\"height\":\"73\",\"twitter_username\":\"mb_boiler21\",\"sportsdata_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"team\":\"CIN\",\"cbs_id\":\"2183896\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32886\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"15001\",\"draft_team\":\"WAS\",\"birthdate\":\"922856400\",\"name\":\"Curl, Kamren\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"rotowire_id\":\"14381\",\"height\":\"74\",\"twitter_username\":\"KCurl_2\",\"sportsdata_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"team\":\"WAS\",\"cbs_id\":\"2866171\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32888\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"15002\",\"draft_team\":\"NYG\",\"birthdate\":\"869461200\",\"name\":\"Coughlin, Carter\",\"draft_pick\":\"4\",\"college\":\"Minnesota\",\"rotowire_id\":\"14580\",\"height\":\"76\",\"twitter_username\":\"Cmoe34\",\"sportsdata_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"team\":\"NYG\",\"cbs_id\":\"2239754\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32889\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15003\",\"draft_team\":\"BAL\",\"birthdate\":\"924498000\",\"name\":\"Stone, Geno\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"14474\",\"height\":\"71\",\"twitter_username\":\"GenoStone22\",\"sportsdata_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"team\":\"BAL\",\"cbs_id\":\"2867170\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32891\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"184\",\"id\":\"15004\",\"draft_team\":\"CAR\",\"birthdate\":\"896936400\",\"name\":\"Thomas-Oliver, Stantley\",\"draft_pick\":\"7\",\"college\":\"Florida International\",\"rotowire_id\":\"14707\",\"height\":\"74\",\"twitter_username\":\"__Alcatraz21\",\"sportsdata_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"team\":\"CAR\",\"cbs_id\":\"2262783\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32895\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15005\",\"draft_team\":\"MIN\",\"birthdate\":\"869547600\",\"name\":\"Willekes, Kenny\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"14732\",\"height\":\"76\",\"twitter_username\":\"kennyw97\",\"sportsdata_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"team\":\"MIN\",\"cbs_id\":\"2186438\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32898\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"15006\",\"draft_team\":\"ATL\",\"birthdate\":\"849762000\",\"name\":\"Hofrichter, Sterling\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"rotowire_id\":\"14653\",\"height\":\"69\",\"twitter_username\":\"shofrichter10\",\"sportsdata_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"team\":\"ATL\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32899\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"15007\",\"draft_team\":\"WAS\",\"birthdate\":\"870238800\",\"name\":\"Smith-Williams, James\",\"draft_pick\":\"15\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14729\",\"height\":\"75\",\"twitter_username\":\"jacsw3\",\"sportsdata_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"team\":\"WAS\",\"cbs_id\":\"2179368\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32901\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15008\",\"draft_team\":\"DAL\",\"birthdate\":\"848811600\",\"name\":\"DiNucci, Ben\",\"draft_pick\":\"17\",\"college\":\"James Madison\",\"rotowire_id\":\"14832\",\"height\":\"75\",\"twitter_username\":\"B_DiNucci6\",\"sportsdata_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"team\":\"DAL\",\"cbs_id\":\"2179411\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32902\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"15009\",\"draft_team\":\"PIT\",\"birthdate\":\"840690000\",\"name\":\"Davis, Carlos\",\"draft_pick\":\"18\",\"college\":\"Nebraska\",\"rotowire_id\":\"14681\",\"height\":\"74\",\"sportsdata_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"team\":\"PIT\",\"cbs_id\":\"2179621\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32903\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"247\",\"id\":\"15010\",\"draft_team\":\"PHI\",\"name\":\"Toohill, Casey\",\"draft_pick\":\"19\",\"college\":\"Stanford\",\"rotowire_id\":\"14753\",\"height\":\"76\",\"twitter_username\":\"CaseyToohill\",\"sportsdata_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"team\":\"PHI\",\"cbs_id\":\"2186841\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32904\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"232\",\"id\":\"15011\",\"draft_team\":\"LAR\",\"birthdate\":\"839480400\",\"name\":\"Johnston, Clay\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"rotowire_id\":\"14743\",\"height\":\"73\",\"twitter_username\":\"C_Johnston4\",\"sportsdata_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"team\":\"LAR\",\"cbs_id\":\"2189507\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32905\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"285\",\"id\":\"15012\",\"draft_team\":\"DET\",\"birthdate\":\"851922000\",\"name\":\"Cornell, Jashon\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"14833\",\"height\":\"75\",\"twitter_username\":\"JayRock_9\",\"sportsdata_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"team\":\"DET\",\"cbs_id\":\"2179802\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32906\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"15013\",\"draft_team\":\"GBP\",\"birthdate\":\"873954000\",\"name\":\"Scott, Vernon\",\"draft_pick\":\"22\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14779\",\"height\":\"74\",\"twitter_username\":\"OfficialVern_\",\"sportsdata_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"team\":\"GBP\",\"cbs_id\":\"2240340\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32907\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"15014\",\"draft_team\":\"KCC\",\"birthdate\":\"879051600\",\"name\":\"Keyes, Thakarius\",\"draft_pick\":\"23\",\"college\":\"Tulane\",\"rotowire_id\":\"14579\",\"height\":\"73\",\"twitter_username\":\"TzKeyes\",\"sportsdata_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32908\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15015\",\"draft_team\":\"NYG\",\"birthdate\":\"881125200\",\"name\":\"Brunson, T.J.\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"rotowire_id\":\"14834\",\"height\":\"73\",\"sportsdata_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"team\":\"NYG\",\"cbs_id\":\"2252794\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32909\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15016\",\"draft_team\":\"BUF\",\"birthdate\":\"849243600\",\"name\":\"Jackson, Dane\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14549\",\"height\":\"71\",\"twitter_username\":\"Djack11_\",\"sportsdata_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"team\":\"BUF\",\"cbs_id\":\"2179418\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32910\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15017\",\"draft_team\":\"NOS\",\"birthdate\":\"850626000\",\"name\":\"Stevens, Tommy\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14527\",\"height\":\"77\",\"sportsdata_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"team\":\"NOS\",\"cbs_id\":\"2179839\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32911\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15018\",\"draft_team\":\"TBB\",\"birthdate\":\"853736400\",\"name\":\"Russell, Chapelle\",\"draft_pick\":\"27\",\"college\":\"Temple\",\"rotowire_id\":\"14755\",\"height\":\"73\",\"twitter_username\":\"DeuceRussell36\",\"sportsdata_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"team\":\"TBB\",\"cbs_id\":\"2186632\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32912\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15019\",\"draft_team\":\"GBP\",\"birthdate\":\"933138000\",\"name\":\"Garvin, Jonathan\",\"draft_pick\":\"28\",\"college\":\"Miami\",\"rotowire_id\":\"14365\",\"height\":\"76\",\"sportsdata_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"team\":\"GBP\",\"cbs_id\":\"2804100\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32913\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"186\",\"id\":\"15020\",\"draft_team\":\"TEN\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Chris\",\"draft_pick\":\"29\",\"college\":\"Marshall\",\"rotowire_id\":\"14835\",\"height\":\"72\",\"sportsdata_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"team\":\"TEN\",\"cbs_id\":\"3679\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32915\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15021\",\"draft_team\":\"TBB\",\"birthdate\":\"891493200\",\"name\":\"Calais, Raymond\",\"draft_pick\":\"31\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"14625\",\"height\":\"69\",\"twitter_username\":\"king_calais\",\"sportsdata_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"team\":\"TBB\",\"cbs_id\":\"2252175\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32916\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15022\",\"draft_team\":\"MIA\",\"birthdate\":\"861426000\",\"name\":\"Perry, Malcolm\",\"draft_pick\":\"32\",\"college\":\"Navy\",\"rotowire_id\":\"14504\",\"height\":\"69\",\"sportsdata_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"team\":\"MIA\",\"cbs_id\":\"2251971\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32917\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15023\",\"draft_team\":\"NYG\",\"birthdate\":\"864018000\",\"name\":\"Williamson, Chris\",\"draft_pick\":\"33\",\"college\":\"Minnesota\",\"rotowire_id\":\"14836\",\"height\":\"72\",\"sportsdata_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"team\":\"NYG\",\"cbs_id\":\"2180451\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32918\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15024\",\"draft_team\":\"LAR\",\"birthdate\":\"874645200\",\"name\":\"Sloman, Sam\",\"draft_pick\":\"34\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14837\",\"height\":\"68\",\"twitter_username\":\"ssloman118\",\"sportsdata_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"team\":\"LAR\",\"cbs_id\":\"2240109\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32919\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15025\",\"draft_team\":\"MIN\",\"birthdate\":\"860043600\",\"name\":\"Cole, Brian\",\"draft_pick\":\"35\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14620\",\"height\":\"74\",\"sportsdata_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"team\":\"MIN\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32921\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"15026\",\"draft_team\":\"SEA\",\"birthdate\":\"849157200\",\"name\":\"Sullivan, Stephen\",\"draft_pick\":\"37\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14570\",\"height\":\"77\",\"twitter_username\":\"SJS_10\",\"sportsdata_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"team\":\"SEA\",\"cbs_id\":\"2223251\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32922\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15027\",\"draft_team\":\"DEN\",\"birthdate\":\"874731600\",\"name\":\"Cleveland, Tyrie\",\"draft_pick\":\"38\",\"college\":\"Florida\",\"rotowire_id\":\"14621\",\"height\":\"74\",\"sportsdata_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"team\":\"DEN\",\"cbs_id\":\"2248604\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32923\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15028\",\"draft_team\":\"DEN\",\"birthdate\":\"837061200\",\"name\":\"Tuszka, Derrek\",\"draft_pick\":\"40\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14731\",\"height\":\"77\",\"sportsdata_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"team\":\"DEN\",\"cbs_id\":\"2190767\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32924\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15029\",\"draft_team\":\"NYG\",\"birthdate\":\"858142800\",\"name\":\"Crowder, Tae\",\"draft_pick\":\"41\",\"college\":\"Georgia\",\"rotowire_id\":\"14839\",\"height\":\"75\",\"twitter_username\":\"TaeCrowder\",\"sportsdata_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"team\":\"NYG\",\"cbs_id\":\"2180461\"},{\"draft_year\":\"2018\",\"birthdate\":\"826174800\",\"draft_team\":\"FA\",\"stats_id\":\"31744\",\"position\":\"LB\",\"name\":\"Gates, DeMarquis\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13942\",\"weight\":\"221\",\"sportsdata_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"id\":\"15030\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32358\",\"position\":\"PN\",\"name\":\"Fox, Jack\",\"college\":\"Rice\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13715\",\"jersey\":\"6\",\"weight\":\"224\",\"sportsdata_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"id\":\"15032\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"746773200\",\"draft_team\":\"FA\",\"stats_id\":\"32664\",\"position\":\"WR\",\"name\":\"Begelton, Reggie\",\"college\":\"Lamar\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14472\",\"weight\":\"200\",\"sportsdata_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"id\":\"15033\",\"team\":\"GBP\",\"cbs_id\":\"3157671\"},{\"draft_year\":\"2020\",\"birthdate\":\"890974800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33109\",\"position\":\"WR\",\"name\":\"Callaway, Marquez\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14556\",\"weight\":\"204\",\"id\":\"15034\",\"team\":\"NOS\",\"cbs_id\":\"2247505\"},{\"draft_year\":\"2018\",\"birthdate\":\"813819600\",\"draft_team\":\"FA\",\"stats_id\":\"31803\",\"position\":\"QB\",\"name\":\"Wolford, John\",\"college\":\"Wake Forest\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13403\",\"jersey\":\"9\",\"weight\":\"200\",\"sportsdata_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"id\":\"15035\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"843541200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33016\",\"position\":\"QB\",\"name\":\"Smith, J'mar\",\"college\":\"Louisiana Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14845\",\"weight\":\"218\",\"sportsdata_id\":\"0c1998f2-7fd2-4191-a05f-1f7f5b5e2ea3\",\"id\":\"15036\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"876114000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32946\",\"position\":\"WR\",\"name\":\"Lipscomb, Kalija\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14640\",\"weight\":\"200\",\"sportsdata_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"id\":\"15037\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"birthdate\":\"850626000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33132\",\"position\":\"WR\",\"name\":\"Bayless, Omar\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14585\",\"weight\":\"207\",\"sportsdata_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"id\":\"15038\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"895726800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33095\",\"position\":\"WR\",\"name\":\"Parker, Aaron\",\"college\":\"Rhode Island\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14642\",\"weight\":\"191\",\"sportsdata_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"id\":\"15039\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Williams, Ty'Son\",\"college\":\"Brigham Young\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14404\",\"weight\":\"220\",\"id\":\"15040\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"872053200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33329\",\"position\":\"WR\",\"name\":\"Cager, Lawrence\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14597\",\"weight\":\"220\",\"sportsdata_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"id\":\"15041\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"birthdate\":\"875595600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33088\",\"position\":\"RB\",\"name\":\"Ward, Jonathan\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"15106\",\"weight\":\"202\",\"sportsdata_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"id\":\"15042\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"838702800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33017\",\"position\":\"WR\",\"name\":\"Hastings, Will\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14762\",\"weight\":\"174\",\"sportsdata_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"id\":\"15043\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33345\",\"position\":\"RB\",\"name\":\"Scarlett, Cameron\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14887\",\"weight\":\"216\",\"sportsdata_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"id\":\"15044\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"birthdate\":\"880002000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32994\",\"position\":\"TE\",\"name\":\"Breeland, Jacob\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14628\",\"weight\":\"250\",\"sportsdata_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"id\":\"15045\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852440400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33242\",\"position\":\"WR\",\"name\":\"Merritt, Kirk\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14861\",\"weight\":\"210\",\"sportsdata_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"id\":\"15046\",\"team\":\"MIA\"},{\"draft_year\":\"2016\",\"birthdate\":\"719730000\",\"draft_team\":\"FA\",\"stats_id\":\"29925\",\"position\":\"CB\",\"name\":\"Roberson, Tre\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"11506\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"id\":\"15047\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33330\",\"position\":\"WR\",\"name\":\"Campbell, George\",\"college\":\"West Virginia\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14944\",\"weight\":\"183\",\"sportsdata_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"id\":\"15048\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33108\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15049\",\"draft_team\":\"FA\",\"birthdate\":\"888469200\",\"name\":\"Bachie, Joe\",\"college\":\"Michigan State\",\"rotowire_id\":\"14735\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"team\":\"NOS\"},{\"draft_year\":\"2020\",\"birthdate\":\"890802000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33096\",\"position\":\"TE\",\"name\":\"Taumoepeau, Charlie\",\"college\":\"Portland State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14633\",\"weight\":\"245\",\"sportsdata_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"id\":\"15050\",\"team\":\"DAL\"}]},\"encoding\":\"utf-8\"}"), 
+    date = structure(1595849355, class = c("POSIXct", "POSIXt"
+    ), tzone = "GMT"), times = c(redirect = 0.138447, namelookup = 0.001096, 
+    connect = 0.001106, pretransfer = 0.001367, starttransfer = 1.381678, 
+    total = 1.52497)), class = "response")
diff --git a/tests/testthat/test-mfl_connect.R b/tests/testthat/test-ff_connect.R
similarity index 76%
rename from tests/testthat/test-mfl_connect.R
rename to tests/testthat/test-ff_connect.R
index 9848b6db..e5c80c53 100644
--- a/tests/testthat/test-mfl_connect.R
+++ b/tests/testthat/test-ff_connect.R
@@ -1,4 +1,11 @@
 with_mock_api({
+
+  test_that("ff_connect returns an S3 obj for each platform currently programmed",{
+    expect_s3_class(ff_connect("mfl",54040),"mfl_conn")
+    expect_s3_class(ff_connect("sleeper",527362181635997696),"sleeper_conn")
+    expect_error(ff_connect("flea"))
+  })
+
   test_that("Does logincookie return a request-like object?",{
 
     request <- .mfl_logincookie(
diff --git a/tests/testthat/test-ff_draft.R b/tests/testthat/test-ff_draft.R
new file mode 100644
index 00000000..657d36bf
--- /dev/null
+++ b/tests/testthat/test-ff_draft.R
@@ -0,0 +1,28 @@
+# test_that("multiplication works", {
+#   expect_equal(2 * 2, 4)
+# })
+#
+# with_mock_api({
+#
+# })
+
+
+with_mock_api({
+  test_that("ff_draft returns a tibble for each platform currently programmed",{
+    sfb_conn <- ff_connect("mfl",65443,season = 2020)
+    sfb_draftresults <- ff_draft(sfb_conn)
+
+    expect_s3_class(sfb_draftresults,class = "tbl_df")
+    expect_gt(nrow(sfb_draftresults),1)
+
+    ssb_conn <- ff_connect("mfl",54040,season = 2020)
+    ssb_draftresults <- ff_draft(ssb_conn)
+
+    expect_s3_class(ssb_draftresults,class = "tbl_df")
+    expect_gt(nrow(ssb_draftresults),1)
+
+    sleeper_conn <- ff_connect("sleeper",527362181635997696,season = 2020)
+    expect_error(ff_draft(sleeper_conn))
+
+  })
+})
diff --git a/tests/testthat/test-ff_league.R b/tests/testthat/test-ff_league.R
new file mode 100644
index 00000000..cdec8edb
--- /dev/null
+++ b/tests/testthat/test-ff_league.R
@@ -0,0 +1,14 @@
+with_mock_api({
+  test_that("ff_league returns a tibble for each platform currently programmed",{
+    dlf_conn <- ff_connect("mfl",37920,season = 2020)
+    dlf_league <- ff_league(dlf_conn)
+
+    expect_s3_class(dlf_league,class = "tbl_df")
+    expect_equal(nrow(dlf_league),1)
+    expect_true(Reduce(`&`,!is.na(dlf_league)),label = "Test ff_league(dlf) for NA values")
+
+    sleeper_conn <- ff_connect("sleeper",527362181635997696,season = 2020)
+    expect_error(ff_league(sleeper_conn))
+
+  })
+})
diff --git a/tests/testthat/test-mfl_playerscores.R b/tests/testthat/test-ff_playerscores.R
similarity index 100%
rename from tests/testthat/test-mfl_playerscores.R
rename to tests/testthat/test-ff_playerscores.R
diff --git a/tests/testthat/test-mfl_transactions.R b/tests/testthat/test-ff_transactions.R
similarity index 100%
rename from tests/testthat/test-mfl_transactions.R
rename to tests/testthat/test-ff_transactions.R
diff --git a/tests/testthat/test-generics.R b/tests/testthat/test-generics.R
index 18ee59a2..8b137891 100644
--- a/tests/testthat/test-generics.R
+++ b/tests/testthat/test-generics.R
@@ -1,85 +1 @@
-# test_that("multiplication works", {
-#   expect_equal(2 * 2, 4)
-# })
-
-test_that("ff_connect returns an S3 obj for each platform currently programmed",{
-  expect_s3_class(ff_connect("mfl",54040),"mfl_conn")
-  expect_s3_class(ff_connect("sleeper",527362181635997696),"sleeper_conn")
-  expect_error(ff_connect("flea"))
-})
-
-test_that("ff_connect returns an S3 obj for each platform currently programmed",{
-  expect_s3_class(ff_connect("mfl",54040),"mfl_conn")
-  expect_s3_class(ff_connect("sleeper",527362181635997696),"sleeper_conn")
-  expect_error(ff_connect("flea"))
-})
-
-with_mock_api({
-test_that("ff_league returns a tibble for each platform currently programmed",{
-  dlf_conn <- ff_connect("mfl",37920,season = 2020)
-  dlf_league <- ff_league(dlf_conn)
-
-  expect_s3_class(dlf_league,class = "tbl_df")
-  expect_equal(nrow(dlf_league),1)
-  expect_true(Reduce(`&`,!is.na(dlf_league)),label = "Test ff_league(dlf) for NA values")
-
-  sleeper_conn <- ff_connect("sleeper",527362181635997696,season = 2020)
-  expect_error(ff_league(sleeper_conn))
-
-})
-})
-
-with_mock_api({
-  test_that("ff_league returns a tibble for each platform currently programmed",{
-    dlf_conn <- ff_connect("mfl",37920,season = 2020)
-    dlf_rosters <- ff_rosters(dlf_conn)
-
-    expect_s3_class(dlf_rosters,class = "tbl_df")
-    expect_gt(nrow(dlf_rosters),1)
-
-    sleeper_conn <- ff_connect("sleeper",527362181635997696,season = 2020)
-    expect_error(ff_rosters(sleeper_conn))
-
-  })
-})
-
-with_mock_api({
-  test_that("ff_draft returns a tibble for each platform currently programmed",{
-   sfb_conn <- ff_connect("mfl",65443,season = 2020)
-   sfb_draftresults <- ff_draft(sfb_conn)
-
-   expect_s3_class(sfb_draftresults,class = "tbl_df")
-   expect_gt(nrow(sfb_draftresults),1)
-
-   ssb_conn <- ff_connect("mfl",54040,season = 2020)
-   ssb_draftresults <- ff_draft(ssb_conn)
-
-   expect_s3_class(ssb_draftresults,class = "tbl_df")
-   expect_gt(nrow(ssb_draftresults),1)
-
-   sleeper_conn <- ff_connect("sleeper",527362181635997696,season = 2020)
-   expect_error(ff_draft(sleeper_conn))
-
-  })
-})
-
-with_mock_api({
-  test_that("ff_transactions returns a tibble for each platform currently programmed",{
-    dlf_conn <- ff_connect("mfl",37920,season = 2020)
-    dlf_transactions <- ff_transactions(dlf_conn)
-
-    expect_s3_class(dlf_transactions,class = "tbl_df")
-    expect_gt(nrow(dlf_transactions),1)
-
-    ssb_conn <- ff_connect("mfl",54040,season = 2020)
-    ssb_transactions <- ff_transactions(ssb_conn)
-
-    expect_s3_class(ssb_transactions,class = "tbl_df")
-    expect_gt(nrow(ssb_transactions),1)
-
-    sleeper_conn <- ff_connect("sleeper",527362181635997696,season = 2020)
-    expect_error(ff_transactions(sleeper_conn))
-
-  })
-})
 
diff --git a/tests/testthat/test-mfl_api.R b/tests/testthat/test-mfl_api.R
deleted file mode 100644
index 4eeba8ee..00000000
--- a/tests/testthat/test-mfl_api.R
+++ /dev/null
@@ -1,7 +0,0 @@
-# test_that("multiplication works", {
-#   expect_equal(2 * 2, 4)
-# })
-#
-# with_mock_api({
-#
-# })
diff --git a/tests/testthat/test-mfl_leaguesummary.R b/tests/testthat/test-mfl_leaguesummary.R
deleted file mode 100644
index ebf11eb7..00000000
--- a/tests/testthat/test-mfl_leaguesummary.R
+++ /dev/null
@@ -1,3 +0,0 @@
-# test_that("multiplication works", {
-#   expect_equal(2 * 2, 4)
-# })